tadpole: Add boot module

This commit is contained in:
Alexander Heldt
2024-07-27 11:50:31 +02:00
parent 6e67da9c6f
commit 813d896b61
2 changed files with 11 additions and 9 deletions

View File

@@ -11,15 +11,6 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
boot = {
loader = {
grub = {
enable = true;
device = "/dev/sda";
};
};
};
users.users.alex = { users.users.alex = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];

View File

@@ -0,0 +1,11 @@
{ ... }:
{
boot = {
loader = {
grub = {
enable = true;
device = "/dev/sda";
};
};
};
}