Last active
November 13, 2025 09:12
-
-
Save isabelroses/018f5aa07131de8c43a1d0b7ec0c6916 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, lib, pkgs, ... }: | |
| { | |
| imports = [ <nixos-wsl/modules> ]; | |
| wsl.enable = true; | |
| wsl.defaultUser = "isabel"; | |
| networking.hostName = "valkyrie"; | |
| environment.systemPackages = [ | |
| pkgs.git | |
| ]; | |
| nix = { | |
| package = pkgs.lix; | |
| settings = { | |
| experimental-features = [ "nix-command" "flakes" ]; | |
| trusted-users = [ "@wheel" ]; | |
| substituters = [ "https://cache.tgirl.cloud/tgirlcloud" ]; | |
| trusted-public-keys = [ "tgirlcloud:EaOlHrpuOI6Zwmir3/MzqS9uA0Xn3gYr15/k/v0HIPo=" ]; | |
| }; | |
| }; | |
| system.stateVersion = "25.05"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.