From 2e37bf1533ace5b2d4d50196300133d9e72d2952 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Sat, 29 Mar 2025 23:09:38 +0100 Subject: flakes update feat. xfce --- nixos/hosts/crank-vm/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 nixos/hosts/crank-vm/default.nix (limited to 'nixos/hosts/crank-vm/default.nix') 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; +} -- cgit v1.3.1