feat: add new host, noma.nix
This commit is contained in:
@@ -4,7 +4,7 @@ in
|
||||
{
|
||||
# Bootloader
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.device = lib.mkDefault "/dev/sda";
|
||||
|
||||
|
||||
# Networking
|
||||
|
20
system/noma.nix
Normal file
20
system/noma.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
boot.loader = {
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
};
|
||||
grub = {
|
||||
efiSupport = true;
|
||||
device = "nodev";
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
desktopManager.plasma6.enable = true;
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user