diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
| commit | 2e37bf1533ace5b2d4d50196300133d9e72d2952 (patch) | |
| tree | 0c06f4f03599933bb3d0e31620203287ca67c7c0 /nixos/hosts/crank-vm/default.nix | |
| parent | 2418424adabca0a1616cca4920221cd67149b65a (diff) | |
flakes update feat. xfce
Diffstat (limited to '')
| -rw-r--r-- | nixos/hosts/crank-vm/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nixos/hosts/crank-vm/default.nix b/nixos/hosts/crank-vm/default.nix new file mode 100644 index 0000000..1415674 --- /dev/null +++ b/nixos/hosts/crank-vm/default.nix @@ -0,0 +1,20 @@ +{ config, inputs, pkgs, ...}: +{ + imports = [ + ./hardware-configuration.nix + ../../common + ]; + + networking.hostName = "crank-vm"; # Define your hostname. + # Use the systemd-boot EFI boot loader. + # boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + boot.loader.grub = { + device = "nodev"; + useOSProber = true; + efiSupport = true; + default = "saved"; + memtest86.enable = true; + }; + networking.firewall.enable = false; +} |
