voyager: add home-manager

This commit is contained in:
2023-12-18 23:52:17 +01:00
parent a74733fa2d
commit c5d970ae4c
3 changed files with 24 additions and 38 deletions

19
hosts/voyager/home.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [
bat
bottom
ncdu
neofetch
];
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "23.05";
}