mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 06:06:29 +00:00
Update to NixOS 22.05
This commit is contained in:
parent
24ccedea85
commit
1bfdd2a6f6
5 changed files with 10 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ];
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
services.redshift = {
|
||||
enable = true;
|
||||
package = pkgs.redshift-wlr;
|
||||
package = pkgs.gammastep;
|
||||
temperature.night = 3500;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue