diff --git a/configuration.nix b/configuration.nix index 7277700..bf25649 100644 --- a/configuration.nix +++ b/configuration.nix @@ -75,6 +75,6 @@ services.tailscale.enable = true; services.tailscale.useRoutingFeatures = "client"; - system.stateVersion = "23.05"; + system.stateVersion = "24.11"; } diff --git a/dotfiles/git/config b/dotfiles/git/config index 1f5d637..0fe6a8a 100644 --- a/dotfiles/git/config +++ b/dotfiles/git/config @@ -2,6 +2,6 @@ defaultBranch = main [user] name = dracoling - email = dracoling@consolidatedawesome.com + email = dracoling@dracol.ing [includeIf "gitdir:~/work/"] path = ~/work/.gitconfig diff --git a/machines/monolith-nix/local.nix b/machines/monolith-nix/local.nix new file mode 100644 index 0000000..838c9a8 --- /dev/null +++ b/machines/monolith-nix/local.nix @@ -0,0 +1,38 @@ +{ ... }: + +{ + imports = [ + # include NixOS-WSL modules + + ]; + + wsl.enable = true; + wsl.defaultUser = "draco"; + networking.hostName = "monolith-nix"; + + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 30d"; + }; + + # Set your time zone. + time.timeZone = "America/New_York"; + + # Select internationalization properties. + i18n.defaultLocale = "en_US.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_US.UTF-8"; + LC_IDENTIFICATION = "en_US.UTF-8"; + LC_MEASUREMENT = "en_US.UTF-8"; + LC_MONETARY = "en_US.UTF-8"; + LC_NAME = "en_US.UTF-8"; + LC_NUMERIC = "en_US.UTF-8"; + LC_PAPER = "en_US.UTF-8"; + LC_TELEPHONE = "en_US.UTF-8"; + LC_TIME = "en_US.UTF-8"; + }; + + +}