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"; + }; +}