diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-12 17:22:28 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-12 17:22:28 -0500 |
commit | b270dba4fe994ddcb8f1fd771dcd98a92d7e5f7b (patch) | |
tree | 0ebdc5ef05a186679f1a36fca977bc87600df99d /hosts | |
parent | ccb304fb5c435f18503b59c1e95b2918e486b955 (diff) | |
download | nixos-config-b270dba4fe994ddcb8f1fd771dcd98a92d7e5f7b.tar.gz nixos-config-b270dba4fe994ddcb8f1fd771dcd98a92d7e5f7b.zip |
hosts/thyme: Move GRUB config to hardware.nix
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/thyme/default.nix | 3 | ||||
-rw-r--r-- | hosts/thyme/hardware.nix | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hosts/thyme/default.nix b/hosts/thyme/default.nix index adc65e7..61b338c 100644 --- a/hosts/thyme/default.nix +++ b/hosts/thyme/default.nix @@ -18,9 +18,6 @@ dictionaries.extra = ["grc" "la"]; }; - boot.loader.grub.enable = true; - boot.loader.grub.device = "nodev"; - time.timeZone = "America/Chicago"; this.users.enabled = ["simon"]; diff --git a/hosts/thyme/hardware.nix b/hosts/thyme/hardware.nix index 50956c6..63594b0 100644 --- a/hosts/thyme/hardware.nix +++ b/hosts/thyme/hardware.nix @@ -12,6 +12,9 @@ in boot.extraModulePackages = []; boot.resumeDevice = swapPart; + boot.loader.grub.enable = true; + boot.loader.grub.device = "nodev"; + fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; |