diff options
| author | seth <[email protected]> | 2024-07-09 06:19:35 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-07-09 15:38:51 -0400 |
| commit | 74159b94f662fc737f5614bdd29fd76bf27cee27 (patch) | |
| tree | 01ea7331433d429d58552bbb5c82f2e2d007d752 /systems/glados-wsl/default.nix | |
| parent | 626636985bcb038af6bf14830f3f304bbda0c9ad (diff) | |
glados{,-wsl}: add comments to some things
Diffstat (limited to 'systems/glados-wsl/default.nix')
| -rw-r--r-- | systems/glados-wsl/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/systems/glados-wsl/default.nix b/systems/glados-wsl/default.nix index ebe0f74..ab4d23f 100644 --- a/systems/glados-wsl/default.nix +++ b/systems/glados-wsl/default.nix @@ -14,11 +14,13 @@ archetypes.personal.enable = true; base = { + # these don't work well on wsl networking.enable = false; security.enable = false; }; environment = { + # i occasionally use graphics stuff noXlibs = lib.mkForce false; systemPackages = with pkgs; [ wget @@ -36,13 +38,15 @@ wsl = { enable = true; + defaultUser = "seth"; + interop.includePath = false; # this is so annoying nativeSystemd = true; + startMenuLaunchers = false; # ditto + wslConf.network = { hostname = "glados-wsl"; generateResolvConf = true; }; - startMenuLaunchers = false; - interop.includePath = false; }; } |
