Adding monolith, fixing git, bumped nixos version

This commit is contained in:
dracoling 2025-07-12 09:36:31 -04:00
parent 151865ebb0
commit e65a36b508
3 changed files with 40 additions and 2 deletions

View file

@ -75,6 +75,6 @@
services.tailscale.enable = true;
services.tailscale.useRoutingFeatures = "client";
system.stateVersion = "23.05";
system.stateVersion = "24.11";
}

View file

@ -2,6 +2,6 @@
defaultBranch = main
[user]
name = dracoling
email = dracoling@consolidatedawesome.com
email = dracoling@dracol.ing
[includeIf "gitdir:~/work/"]
path = ~/work/.gitconfig

View file

@ -0,0 +1,38 @@
{ ... }:
{
imports = [
# include NixOS-WSL modules
<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";
};
}