nix/hosts/home.nix
2023-04-25 04:51:27 -05:00

14 lines
261 B
Nix
Executable file

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