From 7aeed13a34bfb3abddf128fcd5bbc2222575cdfa Mon Sep 17 00:00:00 2001 From: Ben Corner Date: Wed, 15 May 2024 20:54:01 -0500 Subject: [PATCH] [NixOS] Add bencbox --- nixos/machines/bencbox.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 nixos/machines/bencbox.nix diff --git a/nixos/machines/bencbox.nix b/nixos/machines/bencbox.nix new file mode 100644 index 00000000..52026793 --- /dev/null +++ b/nixos/machines/bencbox.nix @@ -0,0 +1,24 @@ +{ lib, pkgs, config, inputs, forEachUser, ... }: +{ + imports = [ + ../configuration.nix + ]; + services.xserver.enable = true; + environment.systemPackages = with pkgs; [ + sublime + vlc + ]; + modules.desktop.enable = false; + modules.plasma.enable = false; + imalison.nixOverlay.enable = false; + modules.wsl.enable = true; + + networking.hostName = "bencbox"; + + wsl.defaultUser = "ben"; + system.stateVersion = "22.05"; + + home-manager.users = forEachUser { + home.stateVersion = "22.05"; + }; +}