diff options
author | Emma (Rory&) <root@rory.gay> | 2023-09-28 15:56:29 +0000 |
---|---|---|
committer | Emma (Rory&) <root@rory.gay> | 2023-09-28 15:56:29 +0000 |
commit | b2c4d04963c89846e03c6e8080e7418d7daed59e (patch) | |
tree | 7d52785d6fa87ab1a9416128a76e72fd8df2b255 /host/Rory-wsl/configuration.nix | |
parent | Formatting changes (diff) | |
download | Rory-Open-Architecture-b2c4d04963c89846e03c6e8080e7418d7daed59e.tar.xz |
Add WSL config
Diffstat (limited to 'host/Rory-wsl/configuration.nix')
-rw-r--r-- | host/Rory-wsl/configuration.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/host/Rory-wsl/configuration.nix b/host/Rory-wsl/configuration.nix index 35eaff5..313eeb4 100644 --- a/host/Rory-wsl/configuration.nix +++ b/host/Rory-wsl/configuration.nix @@ -1,6 +1,9 @@ { lib, pkgs, config, modulesPath, ... }: { + imports = [ + ../../modules/base-client.nix + ]; wsl = { enable = true; automountPath = "/mnt"; @@ -14,10 +17,7 @@ # docker-desktop.enable = true; }; - - nix.extraOptions = '' - experimental-features = nix-command flakes - ''; + networking.hostName = "Rory-wsl"; environment.systemPackages = with pkgs; [ wget @@ -43,4 +43,5 @@ ]; system.stateVersion = "23.05"; + home-manager.users.Rory.home.stateVersion = "23.05"; } |