add host specific home manager config for snowbelle

This commit is contained in:
2025-11-01 17:56:01 -05:00
parent a6d2c0030d
commit ba40661f5e
2 changed files with 32 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ in
];
home-manager.users.blake.imports = [
../../../users/blake/dots/git
../../../users/blake/hosts/snowbelle.nix
];
system = {

View File

@@ -0,0 +1,31 @@
{
config,
lib,
pkgs,
inputs,
...
}:
{
imports = [
../dots
];
dots = {
lf.enable = true;
nvf.enable = true;
zsh.enable = true;
ssh.enable = true;
gpg.enable = true;
git.enable = true;
xdg.enable = true;
};
home.packages = with pkgs; [
htop
sl
];
}