nix-flake/modules/home/default.nix
satr14 021c7f7200
Some checks failed
Activate Homelab Configuration / rebuild (push) Has been cancelled
remove theme import
2026-04-15 13:13:54 +07:00

20 lines
353 B
Nix

{ username, ctp-opt, ... }: {
imports = [
./core/shell.nix
./core/cli.nix
];
catppuccin = {
enable = true;
hyprlock.useDefaultConfig = false;
flavor = ctp-opt.flavor;
accent = ctp-opt.accent;
};
home = {
stateVersion = "24.11";
username = "${username}";
homeDirectory = "/home/${username}";
};
}