You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
701 B
Cheetah

{ config, pkgs, ... }: {
home.username = "{{ctx.username}}";
home.homeDirectory = "{{dirs.home}}";
home.stateVersion = "23.11";
7 months ago
news.display = "show";
home.packages = [
# START silo
{{#each cfg.packages}}
pkgs.{{this}}
{{/each}}
{{#each cfg.modules}}
{{#if this.enabled}}
# {{@key}} packages
{{#each this.packages}}
8 months ago
pkgs.{{{this}}}
{{/each}}
{{/if}}
{{/each}}
# END
];
fonts.fontconfig.enable = true;
# Let Home Manager install and manage itself.
8 months ago
programs = {
home-manager.enable = true;
{{#if-installed direnv}}
direnv = {
enable = true;
nix-direnv.enable = true;
};
{{/if-installed}}
};
}