System/machines/wsl/configuration.nix

29 lines
553 B
Nix
Raw Normal View History

2022-07-06 01:42:31 -04:00
{ config, lib, pkgs, ... }:
{
# Setup system configuration
nathan = {
services = {
ssh = false;
tailscale.enable = false;
};
config = {
installUser = false;
nix.autoUpdate = false;
harden = false;
fonts = true;
};
};
# Configure networking
networking = { domain = "mccarty.io"; };
2022-07-06 01:42:31 -04:00
# Setup home manager
home-manager.users.nathan = import ./home.nix;
2022-07-06 02:09:33 -04:00
# Setup WSL
wsl = {
enable = true;
automountPath = "/mnt";
defaultUser = "nathan";
startMenuLaunchers = true;
};
2022-07-06 01:42:31 -04:00
}