diff options
| author | adikro <adikro@disroot.org> | 2026-02-12 00:41:07 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-02-12 00:41:07 +0100 |
| commit | 1ff6f0eb48961e6482ec1b7d0dd9b606e85ddc79 (patch) | |
| tree | 62099e5c57c7ffe92777f800ec45ee5d68a16ecf /hosts/desktop/configuration.nix | |
| parent | 233e5fb7d43a0736857ee6b9f74967f03b73837c (diff) | |
disko and bootloader changes
Diffstat (limited to 'hosts/desktop/configuration.nix')
| -rw-r--r-- | hosts/desktop/configuration.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index f825848..50fb2c9 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -9,11 +9,14 @@ imports = [ inputs.disko.nixosModules.disko - + # ./disko.nix ./hardware-configuration.nix + ../../os/default.nix ]; + # hardware.facter.reportPath = /etc/nixos/hosts/desktop/facter.json; + os = { core = { allowUnfree.enable = true; @@ -23,7 +26,11 @@ enable = true; disable-devices.enable = true; }; - bootloader.type = "systemd-boot"; + bootloader = { + type = "systemd-boot"; + timeout = 0; + # luks.enable = true; + }; drivers = { enable = true; cpu = "amd"; @@ -85,7 +92,6 @@ }; boot = { - kernelParams = [ "video=DP-1:2560x1440@240" ]; kernelModules = [ "nct6687" ]; extraModulePackages = [ config.boot.kernelPackages.nct6687d |
