My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

force systemd boot false for lanzaboote

quasigod 2123b609 6e82329c

+3 -2
+2 -2
modules/boot.nix
··· 1 - { inputs, ... }: 1 + { inputs, lib, ... }: 2 2 { 3 3 styx.boot.provides = { 4 4 secure.nixos = { 5 5 imports = [ inputs.lanzaboote.nixosModules.lanzaboote ]; 6 6 boot = { 7 - loader.systemd-boot.enable = false; 7 + loader.systemd-boot.enable = lib.mkForce false; 8 8 lanzaboote = { 9 9 enable = true; 10 10 pkiBundle = "/var/lib/sbctl";
+1
modules/power-mgmt.nix
··· 2 2 styx.power-mgmt.nixos.services = { 3 3 tuned.enable = true; 4 4 thermald.enable = true; 5 + tlp.enable = false; 5 6 power-profiles-daemon.enable = false; 6 7 }; 7 8 }