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")
];
boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
boot.initrd.kernelModules = [];
boot.kernelModules = [];
boot.extraModulePackages = [];
boot = {
initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
initrd.kernelModules = [];
kernelModules = [];
extraModulePackages = [];
};
fileSystems."/" = {
device = "UUID=288cfd6e-dd6d-4ac4-bc2f-36c1309f8619";

View file

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