nix-flake/modules/home/default.nix
2026-07-06 15:38:09 +08:00

23 lines
450 B
Nix

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