diff --git a/hosts/pulsebert/home.nix b/hosts/pulsebert/home.nix new file mode 100644 index 00000000..f55cd737 --- /dev/null +++ b/hosts/pulsebert/home.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; [ + htop + fortune + ddate + mpv + ncmpcpp + schedtool + screen + tmux + pulsemixer + ]; +} diff --git a/install-host.sh b/install-host.sh index 9b847799..0583575a 100755 --- a/install-host.sh +++ b/install-host.sh @@ -19,3 +19,7 @@ done sudo ln -s $HOME/$REPO/hosts/`hostname -s`/configuration.nix /etc/nixos/configuration.nix ls -l /etc/nixos/configuration.nix +if [ -f $REPO/hosts/`hostname -s`/home.nix ]; then + mkdir -p ~/.config/nixpkgs + ln -s $HOME/$REPO/hosts/`hostname -s`/home.nix ~/.config/nixpkgs/home.nix +fi