decoysnail: flakify
This commit is contained in:
parent
99727a34f7
commit
e0be60449b
@ -3,7 +3,6 @@
|
|||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
/etc/nixos/hardware-configuration.nix
|
|
||||||
./common-headless.nix
|
./common-headless.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
./large-sw.nix
|
./large-sw.nix
|
||||||
@ -14,6 +13,28 @@
|
|||||||
./huion.nix
|
./huion.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
||||||
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||||||
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "/dev/disk/by-uuid/a16ae3f7-11df-47fc-a8df-f22c474ec1c1";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" =
|
||||||
|
{ device = "/dev/disk/by-uuid/3C5C-049B";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
#swapDevices = [
|
||||||
|
# { device = "/dev/disk/by-uuid/b7274abd-58a5-4acc-8481-30e105e94eec"; }
|
||||||
|
#];
|
||||||
|
|
||||||
|
nix.maxJobs = pkgs.lib.mkDefault 6;
|
||||||
|
powerManagement.cpuFreqGovernor = pkgs.lib.mkDefault "powersave";
|
||||||
|
|
||||||
environment.etc."lvm/lvm.conf".text = ''
|
environment.etc."lvm/lvm.conf".text = ''
|
||||||
devices {
|
devices {
|
||||||
issue_discards = 1
|
issue_discards = 1
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
hosts = {
|
hosts = {
|
||||||
petalius.modules = [ ./petalius.nix ];
|
petalius.modules = [ ./petalius.nix ];
|
||||||
flammea.modules = [ ./flammea.nix ];
|
flammea.modules = [ ./flammea.nix ];
|
||||||
|
decoysnail.modules = [ ./decoysnail.nix ];
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user