Update to NixOS 22.05

This commit is contained in:
Felix Suchert 2022-06-15 17:14:20 +02:00
parent 24ccedea85
commit 1bfdd2a6f6
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
5 changed files with 10 additions and 9 deletions

View file

@ -38,6 +38,7 @@ in
./modules/python.nix
];
# set up LUKS discovery
boot.initrd.luks.devices.cryptlvm.device = "/dev/disk/by-uuid/f382cd01-9048-4b1b-8a73-48e1f61e6c08";
@ -147,7 +148,6 @@ in
ncdu
tldr
unzip
ncat
bind
inetutils
usbutils

View file

@ -101,7 +101,6 @@
# configure pulseaudio to work with bluetooth headsets using aptx
hardware.pulseaudio = {
enable = true;
extraModules = [ pkgs.pulseaudio-modules-bt ];
# the full package is necessary for BT support
package = pkgs.pulseaudioFull;
# switch to bluetooth automatically if they are connected

View file

@ -6,11 +6,11 @@
services.udev.packages = [ pkgs.libu2f-host ];
## enable fingerprint reader
#services.fprintd.enable = true;
#security.pam.services.login.fprintAuth = true;
##security.pam.services.xscreensaver.fprintAuth = true;
#security.pam.services.sudo.fprintAuth = true;
# enable fingerprint reader
services.fprintd.enable = true;
security.pam.services.login.fprintAuth = true;
#security.pam.services.xscreensaver.fprintAuth = true;
security.pam.services.sudo.fprintAuth = true;
environment.systemPackages = with pkgs; [
# tool for flashing firmware

View file

@ -6,6 +6,7 @@
R-with-my-packages = rWrapper.override {
packages = with rPackages; [
ggplot2
tidyverse
rlang
lazyeval
patchwork
@ -21,5 +22,6 @@
];
};
in
[ R-with-my-packages rstudioEnv ];
#[ R-with-my-packages rstudioEnv ];
[ R-with-my-packages ];
}

View file

@ -34,7 +34,7 @@
services.redshift = {
enable = true;
package = pkgs.redshift-wlr;
package = pkgs.gammastep;
temperature.night = 3500;
};