From 8a7cec11cfea33e8e4de9ea54a81a438c12709a2 Mon Sep 17 00:00:00 2001 From: Dean Wenstrand Date: Mon, 13 May 2024 21:50:27 +0000 Subject: [PATCH] Add dean-zephyrus --- nixos/machines/dean-zephyrus.nix | 21 +++++++++++++++++++++ nixos/nix.nix | 1 - nixos/wsl.nix | 1 - 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 nixos/machines/dean-zephyrus.nix diff --git a/nixos/machines/dean-zephyrus.nix b/nixos/machines/dean-zephyrus.nix new file mode 100644 index 00000000..b454f41a --- /dev/null +++ b/nixos/machines/dean-zephyrus.nix @@ -0,0 +1,21 @@ +{ lib, pkgs, config, inputs, forEachUser, ... }: +{ + imports = [ + ../configuration.nix + ]; + services.xserver.enable = true; + environment.systemPackages = with pkgs; [sublime]; + modules.desktop.enable = false; + modules.plasma.enable = false; + imalison.nixOverlay.enable = false; + modules.wsl.enable = true; + + networking.hostName = "dean-zephyrus"; + + wsl.defaultUser = "dean"; + system.stateVersion = "22.05"; + + home-manager.users = forEachUser { + home.stateVersion = "22.05"; + }; +} diff --git a/nixos/nix.nix b/nixos/nix.nix index bfa89746..a4e65897 100644 --- a/nixos/nix.nix +++ b/nixos/nix.nix @@ -29,7 +29,6 @@ keep-derivations = true; substituters = [ "https://cache.nixos.org" - "https://cache.railbird.ai?priority=45" ]; trusted-public-keys = [ "cache.railbird.ai:KhnvcouxtIU2zxUcjJsm4bUK3o1S3p8xMf9qfZGF7/A=" diff --git a/nixos/wsl.nix b/nixos/wsl.nix index e2c17a32..f58f460f 100644 --- a/nixos/wsl.nix +++ b/nixos/wsl.nix @@ -16,6 +16,5 @@ makeEnable config "modules.wsl" false { automountPath = "/mnt"; startMenuLaunchers = true; nativeSystemd = true; - docker-native.enable = true; }; }