nix/hosts/home.nix
2023-04-30 14:15:07 -05:00

17 lines
334 B
Nix
Executable file

{ username, pkgs, ... }:
{
imports = ( import ../modules/programs );
home = {
inherit username;
stateVersion = "22.11";
packages = with pkgs; [
htop
appimage-run
ripgrep
fluxcd
k9s
];
};
systemd.user.startServices = "sd-switch";
xdg.enable = true;
}