feat: add new host, noma.nix

This commit is contained in:
2024-08-21 15:52:22 +03:00
parent 4346c1502b
commit abda1acad9
5 changed files with 66 additions and 2 deletions

View File

@@ -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
View 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;
};
};
}