add latitude

This commit is contained in:
TheCrazyInsanity
2026-04-11 17:49:45 +00:00
parent a1fe50ee54
commit e15989f29f
4 changed files with 206 additions and 0 deletions

22
machines/latitude/home.nix Executable file
View File

@@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
inputs,
outputs,
...
}:
{
# These both are probably always going to be the same, but I'll keep them local just in case:tm:
home.username = "laythe";
home.homeDirectory = lib.mkForce "/home/laythe";
imports = [
../../home/default.nix
# ../../modules/kde/home.nix
];
home.stateVersion = "25.11";
programs.home-manager.enable = true;
}