mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
28 lines
508 B
Nix
28 lines
508 B
Nix
{
|
|
config,
|
|
agenixModule,
|
|
ctpModule,
|
|
...
|
|
}: {
|
|
home.stateVersion = "23.05";
|
|
imports = [
|
|
agenixModule
|
|
ctpModule
|
|
./programs/zsh.nix
|
|
./programs/fish.nix
|
|
./programs/starship.nix
|
|
./programs/git.nix
|
|
./programs/bat.nix
|
|
./programs/helix.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
home.packages = [];
|
|
|
|
catppuccin.flavour = "frappe";
|
|
|
|
age.secrets."attic.toml" = {
|
|
file = ./secrets/attic.toml.age;
|
|
path = "${config.xdg.configHome}/attic/config.toml";
|
|
};
|
|
}
|