infrastructure/home/default.nix

21 lines
334 B
Nix
Raw Normal View History

{inputs, ...}: {
2024-06-15 14:39:17 +00:00
config.home.stateVersion = "24.05";
2023-04-08 13:53:58 +00:00
imports = [
inputs.hyprland.homeManagerModules.default
2024-06-15 14:39:17 +00:00
inputs.catppuccin.homeManagerModules.catppuccin
2024-06-15 15:17:27 +00:00
./applications
./desktop
2023-04-08 13:53:58 +00:00
./shell
2024-06-15 15:17:27 +00:00
./packages.nix
2023-04-08 13:53:58 +00:00
];
2024-06-15 15:17:27 +00:00
config.catppuccin = {
enable = true;
flavor = "mocha";
accent = "blue";
};
2023-04-08 13:53:58 +00:00
}