summaryrefslogtreecommitdiff
path: root/hosts/desktop/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/desktop/configuration.nix')
-rw-r--r--hosts/desktop/configuration.nix18
1 files changed, 16 insertions, 2 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix
index 2c598f7..cf4c360 100644
--- a/hosts/desktop/configuration.nix
+++ b/hosts/desktop/configuration.nix
@@ -7,9 +7,23 @@
../../modules/common.nix
];
- networking.hostName = "desktop";
+ boot.loader.grub = {
+ enable = true;
+ device = "nodev";
+ efiSupport = true;
+ };
+ boot.loader.efi.canTouchEfiVariables = false;
+ boot.loader.efi.efiSysMountPoint = "/boot/efi";
- programs.firefox.enable = true;
+ networking.hostName = "desktop";
+ networking.wireless.iwd.enable = true;
+ networking.wireless.iwd.settings = {
+ General.EnableNetworkConfiguration = true;
+ };
+ networking.nameservers = [
+ "1.1.1.1"
+ "8.8.8.8"
+ ];
system.stateVersion = "25.11";
}