nix-flake/modules/home/default.nix
satr14 52a06a539f
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 23s
seperate ctp theming from that file
2026-04-15 13:09:17 +07:00

21 lines
374 B
Nix

{ username, ctp-opt, ... }: {
imports = [
./rice/theme.nix
./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}";
};
}