refactor: fix stylix complaints

This commit is contained in:
buffet 2024-05-09 17:07:49 +02:00
parent d1c0520c0e
commit d4aaf962c6
2 changed files with 74 additions and 70 deletions

View file

@ -12,10 +12,12 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"]; boot = {
boot.initrd.kernelModules = []; initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
boot.kernelModules = []; initrd.kernelModules = [];
boot.extraModulePackages = []; kernelModules = [];
extraModulePackages = [];
};
fileSystems."/" = { fileSystems."/" = {
device = "UUID=288cfd6e-dd6d-4ac4-bc2f-36c1309f8619"; device = "UUID=288cfd6e-dd6d-4ac4-bc2f-36c1309f8619";

View file

@ -8,10 +8,11 @@ in {
INPUTRC = inputrc; INPUTRC = inputrc;
}; };
programs.direnv.enableBashIntegration = true; programs = {
programs.fzf.enableBashIntegration = true; direnv.enableBashIntegration = true;
fzf.enableBashIntegration = true;
programs.bash = { bash = {
enable = true; enable = true;
historyControl = ["erasedups" "ignorespace"]; historyControl = ["erasedups" "ignorespace"];
@ -79,4 +80,5 @@ in {
''; '';
}; };
}; };
};
} }