[thinkman] update to 21.05

This commit is contained in:
Felix Buehler 2021-06-02 10:37:28 +02:00
parent f8a677958b
commit 17f579e79a
11 changed files with 31 additions and 46 deletions

View file

@ -4,7 +4,7 @@
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
package = pkgs.bluezFull; package = pkgs.bluezFull;
config = { settings = {
General = { General = {
Enable = "Source,Sink,Media,Socket"; Enable = "Source,Sink,Media,Socket";
}; };

View file

@ -20,7 +20,7 @@ in
# gnome services # gnome services
services.dbus.packages = [ pkgs.gnome3.dconf ]; services.dbus.packages = [ pkgs.gnome3.dconf ];
services.udev.packages = [ pkgs.gnome3.gnome-settings-daemon ]; services.udev.packages = [ pkgs.gnome3.gnome-settings-daemon ];
services.gnome3 = { services.gnome = {
gnome-keyring.enable = true; gnome-keyring.enable = true;
glib-networking.enable = true; # network-mount glib-networking.enable = true; # network-mount
}; };

View file

@ -26,4 +26,5 @@
#unifont # unicode #unifont # unicode
]; ];
}; };
nixpkgs.config.joypixels.acceptLicense = true;
} }

View file

@ -3,22 +3,24 @@
{ {
location.provider = "geoclue2"; location.provider = "geoclue2";
services.geoclue2.enable = true; services.geoclue2 = {
services.geoclue2.enableDemoAgent = true; enable = true;
services.geoclue2.appConfig."gammastep" = { enableDemoAgent = true;
desktopID = "gammastep";
isAllowed = true;
isSystem = false;
# Empty list allows all users
users = [ ];
};
services.geoclue2.appConfig."gammastep-indicator" = { appConfig."gammastep" = {
desktopID = "gammastep-indicator"; desktopID = "gammastep";
isAllowed = true; isAllowed = true;
isSystem = false; isSystem = false;
# Empty list allows all users # Empty list allows all users
users = [ ]; users = [ ];
}; };
appConfig."gammastep-indicator" = {
desktopID = "gammastep-indicator";
isAllowed = true;
isSystem = false;
# Empty list allows all users
users = [ ];
};
};
} }

View file

@ -1,7 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
audacity audacity
@ -13,9 +10,9 @@ in
imagemagick imagemagick
image_optim image_optim
inkscape inkscape
unstable.puddletag # audio tagging puddletag # audio tagging
mp3val mp3val
unstable.mediaelch mediaelch
picard picard
projectm projectm
shotwell shotwell

View file

@ -1,12 +1,9 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
element-desktop element-desktop
mumble mumble
unstable.nheko nheko
pidgin pidgin
skypeforlinux skypeforlinux
signal-desktop signal-desktop

View file

@ -1,11 +1,8 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nextcloud-client nextcloud-client
unstable.syncthing syncthing
magic-wormhole magic-wormhole
vdirsyncer vdirsyncer
]; ];

View file

@ -1,10 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
unstable.jabref jabref
biber biber
texlive.combined.scheme-full texlive.combined.scheme-full
texstudio texstudio

View file

@ -1,7 +1,4 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
thunderbolt thunderbolt

View file

@ -1,7 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{ {
programs.light.enable = true; programs.light.enable = true;
@ -9,7 +6,7 @@ in
polkit_gnome polkit_gnome
]; ];
environment.pathsToLink = [ "/libexec" ]; environment.pathsToLink = [ "/libexec" ];
#programs.wshowkeys.enable = true; programs.wshowkeys.enable = true;
programs.sway = { programs.sway = {
enable = true; enable = true;
@ -24,7 +21,7 @@ in
dmenu dmenu
gammastep gammastep
grim grim
unstable.i3status-rust i3status-rust
mako mako
slurp slurp
swayidle swayidle
@ -34,7 +31,7 @@ in
wl-clipboard wl-clipboard
wofi wofi
xwayland xwayland
unstable.wshowkeys wshowkeys
]; ];

View file

@ -55,7 +55,7 @@
options = "--delete-older-than 30d"; options = "--delete-older-than 30d";
}; };
system.stateVersion = "20.09"; system.stateVersion = "21.05";
system.autoUpgrade.enable = true; system.autoUpgrade.enable = true;
system.autoUpgrade.channel = https://nixos.org/channels/nixos-20.09; system.autoUpgrade.channel = https://nixos.org/channels/nixos-21.05;
} }