Files
nixos-configv3/machines/latitude/home.nix
TheCrazyInsanity 302a4fe136 waybar.css
2026-04-12 14:43:58 -04:00

24 lines
423 B
Nix
Executable File

{
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/sway/home.nix
# ../../modules/kde/home.nix
];
home.stateVersion = "25.11";
programs.home-manager.enable = true;
}