diff options
author | Emma (Rory&) <root@rory.gay> | 2023-09-28 14:55:08 +0200 |
---|---|---|
committer | Emma (Rory&) <root@rory.gay> | 2023-09-28 14:55:08 +0200 |
commit | 8f1f6c1c0930eb527b6500289f1c75928e7c2589 (patch) | |
tree | cda909f13b091f50fef65d48fe08758041307de9 /host/Rory-wsl/configuration.nix | |
parent | Fix domains (diff) | |
download | Rory-Open-Architecture-8f1f6c1c0930eb527b6500289f1c75928e7c2589.tar.xz |
Formatting changes
Diffstat (limited to 'host/Rory-wsl/configuration.nix')
-rw-r--r-- | host/Rory-wsl/configuration.nix | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/host/Rory-wsl/configuration.nix b/host/Rory-wsl/configuration.nix new file mode 100644 index 0000000..35eaff5 --- /dev/null +++ b/host/Rory-wsl/configuration.nix @@ -0,0 +1,46 @@ +{ lib, pkgs, config, modulesPath, ... }: + +{ + wsl = { + enable = true; + automountPath = "/mnt"; + defaultUser = "nixos"; + startMenuLaunchers = true; + + # Enable native Docker support + # docker-native.enable = true; + + # Enable integration with Docker Desktop (needs to be installed) + # docker-desktop.enable = true; + + }; + + nix.extraOptions = '' + experimental-features = nix-command flakes + ''; + + environment.systemPackages = with pkgs; [ + wget + neofetch + lnav + git + lsd + duf + htop + btop + kitty.terminfo + jq + yq + pv + dig + cinnamon.nemo + gnome-console + kitty + feh + vimPlugins.vim-nix + neovim + tree + ]; + + system.stateVersion = "23.05"; +} |