nix/hosts/home.nix
2023-04-26 04:36:08 -05:00

15 lines
307 B
Nix
Executable file

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