nix/hosts/vnix-ctr/home.nix

21 lines
283 B
Nix
Raw Normal View History

2024-06-25 13:11:30 +02:00
{ pkgs, ... }:
{
imports = [
# GUI
../../modules/home/gui/theming.nix
# CLI
../../modules/home/cli/common
];
guiTheming.enable = false;
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.stateVersion = "24.05";
}