diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2025-04-14 18:23:57 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2025-04-14 18:23:57 -0600 |
| commit | a3891f152f85cfe677dcadb4b1d8c8d8b05f5ff8 (patch) | |
| tree | 8e087627973bcf030a94e6f8f948fbaac9f1adbd /machines | |
| parent | 4ffb12cdd6c845c9720a3af67196cddc9e26e05d (diff) | |
making vm for foolcreekwireless website
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/vm/foolcreekwireless.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/machines/vm/foolcreekwireless.nix b/machines/vm/foolcreekwireless.nix new file mode 100644 index 0000000..e549b17 --- /dev/null +++ b/machines/vm/foolcreekwireless.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }:{ + imports = [ + # ./hardware-configuration.nix + + ../../modules/nixos/nix-common.nix + ../../modules/nixos/environment.nix + ../../modules/nixos/system-packages.nix + + ../../modules/users/defin.nix + ../../modules/users/root.nix + ]; + + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + environment.systemPackages = with pkgs; [ + cowsay + lolcat + ]; + + system.stateVersion = "24.11"; +} |
