mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-22 14:06:30 +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
|
./modules/python.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
# set up LUKS discovery
|
# set up LUKS discovery
|
||||||
boot.initrd.luks.devices.cryptlvm.device = "/dev/disk/by-uuid/f382cd01-9048-4b1b-8a73-48e1f61e6c08";
|
boot.initrd.luks.devices.cryptlvm.device = "/dev/disk/by-uuid/f382cd01-9048-4b1b-8a73-48e1f61e6c08";
|
||||||
|
|
||||||
|
@ -147,7 +148,6 @@ in
|
||||||
ncdu
|
ncdu
|
||||||
tldr
|
tldr
|
||||||
unzip
|
unzip
|
||||||
ncat
|
|
||||||
bind
|
bind
|
||||||
inetutils
|
inetutils
|
||||||
usbutils
|
usbutils
|
||||||
|
|
|
@ -101,7 +101,6 @@
|
||||||
# configure pulseaudio to work with bluetooth headsets using aptx
|
# configure pulseaudio to work with bluetooth headsets using aptx
|
||||||
hardware.pulseaudio = {
|
hardware.pulseaudio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
|
||||||
# the full package is necessary for BT support
|
# the full package is necessary for BT support
|
||||||
package = pkgs.pulseaudioFull;
|
package = pkgs.pulseaudioFull;
|
||||||
# switch to bluetooth automatically if they are connected
|
# switch to bluetooth automatically if they are connected
|
||||||
|
|
|
@ -6,11 +6,11 @@
|
||||||
|
|
||||||
services.udev.packages = [ pkgs.libu2f-host ];
|
services.udev.packages = [ pkgs.libu2f-host ];
|
||||||
|
|
||||||
## enable fingerprint reader
|
# enable fingerprint reader
|
||||||
#services.fprintd.enable = true;
|
services.fprintd.enable = true;
|
||||||
#security.pam.services.login.fprintAuth = true;
|
security.pam.services.login.fprintAuth = true;
|
||||||
##security.pam.services.xscreensaver.fprintAuth = true;
|
#security.pam.services.xscreensaver.fprintAuth = true;
|
||||||
#security.pam.services.sudo.fprintAuth = true;
|
security.pam.services.sudo.fprintAuth = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# tool for flashing firmware
|
# tool for flashing firmware
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
R-with-my-packages = rWrapper.override {
|
R-with-my-packages = rWrapper.override {
|
||||||
packages = with rPackages; [
|
packages = with rPackages; [
|
||||||
ggplot2
|
ggplot2
|
||||||
|
tidyverse
|
||||||
rlang
|
rlang
|
||||||
lazyeval
|
lazyeval
|
||||||
patchwork
|
patchwork
|
||||||
|
@ -21,5 +22,6 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
[ R-with-my-packages rstudioEnv ];
|
#[ R-with-my-packages rstudioEnv ];
|
||||||
|
[ R-with-my-packages ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
services.redshift = {
|
services.redshift = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.redshift-wlr;
|
package = pkgs.gammastep;
|
||||||
temperature.night = 3500;
|
temperature.night = 3500;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue