infrastructure/home/default.nix
2024-06-15 17:21:34 +02:00

21 lines
334 B
Nix

{inputs, ...}: {
config.home.stateVersion = "24.05";
imports = [
inputs.hyprland.homeManagerModules.default
inputs.catppuccin.homeManagerModules.catppuccin
./applications
./desktop
./shell
./packages.nix
];
config.catppuccin = {
enable = true;
flavor = "mocha";
accent = "blue";
};
}