This commit is contained in:
nathan mccarty 2022-07-06 02:09:33 -04:00
parent 18913693e8
commit 3d4c29a6ae
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 7 additions and 1 deletions

View File

@ -18,7 +18,13 @@
networking = { networking = {
domain = "mccarty.io"; domain = "mccarty.io";
}; };
# Setup home manager # Setup home manager
home-manager.users.nathan = import ./home.nix; home-manager.users.nathan = import ./home.nix;
# Setup WSL
wsl = {
enable = true;
automountPath = "/mnt";
defaultUser = "nathan";
startMenuLaunchers = true;
};
} }