Files
gooberos/modules/base/home/default.nix
2026-03-30 00:20:36 +02:00

14 lines
284 B
Nix

{
imports = [
./fastfetch
];
programs = {
bash.enable = true;
starship.enable = true;
starship.settings = builtins.fromTOML (builtins.readFile ./starship.toml);
home-manager.enable = true;
};
home.stateVersion = "25.11";
}