diff --git a/hosts/tadpole/configuration.nix b/hosts/tadpole/configuration.nix index bd5c06d..c8a4ee4 100644 --- a/hosts/tadpole/configuration.nix +++ b/hosts/tadpole/configuration.nix @@ -11,15 +11,6 @@ nixpkgs.config.allowUnfree = true; - boot = { - loader = { - grub = { - enable = true; - device = "/dev/sda"; - }; - }; - }; - users.users.alex = { isNormalUser = true; extraGroups = [ "wheel" ]; diff --git a/hosts/tadpole/modules/boot/default.nix b/hosts/tadpole/modules/boot/default.nix new file mode 100644 index 0000000..a179761 --- /dev/null +++ b/hosts/tadpole/modules/boot/default.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + boot = { + loader = { + grub = { + enable = true; + device = "/dev/sda"; + }; + }; + }; +}