more stuff

This commit is contained in:
gwg313 2025-02-09 11:16:45 -05:00
parent 42a0bf27e0
commit fe34badada
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
24 changed files with 904 additions and 2343 deletions

View file

@ -0,0 +1,26 @@
{ config, ... }:
{
imports = [ ../../../common/nixos/variables-config.nix ];
config.var = {
hostname = "grymforge";
username = "gwg313";
configDirectory = "/home/" + config.var.username + "/.config/nixos";
keyboardLayout = "en_US";
location = "Ottawa";
timeZone = "American/Toronto";
defaultLocale = "en_US.UTF-8";
git = {
username = "gwg313";
email = "gwg313@pm.me";
};
autoUpgrade = true;
autoGarbageCollector = true;
theme = import ../../../common/style/vars/grymforge.nix;
};
}