nix-flake/modules/home/default.nix
2026-06-16 10:38:11 +07:00

22 lines
425 B
Nix

{ username, ctp-opt, ... }: {
imports = [
./core/shell.nix
./core/cli.nix
];
catppuccin = {
enable = true;
autoEnable = 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}";
};
}