Compare commits
3 commits
81890388e6
...
4f98c37286
Author | SHA1 | Date | |
---|---|---|---|
4f98c37286 | |||
1414086642 | |||
b582a7d707 |
2 changed files with 21 additions and 2 deletions
|
@ -60,6 +60,7 @@
|
||||||
plymouth = {
|
plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
initrd.systemd.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "swarm"; # Define your hostname.
|
networking.hostName = "swarm"; # Define your hostname.
|
||||||
|
@ -141,6 +142,8 @@
|
||||||
iptsd
|
iptsd
|
||||||
surface-control
|
surface-control
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
# for tpm backed encryption
|
||||||
|
tpm2-tss
|
||||||
# Podman
|
# Podman
|
||||||
podman-desktop
|
podman-desktop
|
||||||
podman-compose
|
podman-compose
|
||||||
|
|
|
@ -12,8 +12,24 @@
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "usb_storage" "sd_mod"];
|
boot.initrd.availableKernelModules = [
|
||||||
boot.initrd.kernelModules = ["dm-snapshot" "cryptd" "pinctrl_icelake" "surface_aggregator" "surface_aggregator_registry" "surface_aggregator_hub" "surface_hid_core" "8250_dw" "surface_hid"];
|
"xhci_pci"
|
||||||
|
"nvme"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
|
boot.initrd.kernelModules = [
|
||||||
|
"dm-snapshot"
|
||||||
|
"cryptd"
|
||||||
|
"intel_lpss"
|
||||||
|
"intel_lpss_pci"
|
||||||
|
"pinctrl_icelake"
|
||||||
|
"8250_dw"
|
||||||
|
"surface_hid_core"
|
||||||
|
"surface_hid"
|
||||||
|
"surface_aggregator_registry"
|
||||||
|
"surface_aggregator"
|
||||||
|
];
|
||||||
boot.initrd.luks.devices."crypt".device = "/dev/disk/by-uuid/f16ca8aa-f596-4876-ba82-7427da9afaba";
|
boot.initrd.luks.devices."crypt".device = "/dev/disk/by-uuid/f16ca8aa-f596-4876-ba82-7427da9afaba";
|
||||||
boot.kernelModules = ["kvm-intel"];
|
boot.kernelModules = ["kvm-intel"];
|
||||||
boot.extraModulePackages = [];
|
boot.extraModulePackages = [];
|
||||||
|
|
Loading…
Add table
Reference in a new issue