pulsebert: add home-manager home.nix

This commit is contained in:
Astro 2019-02-19 23:29:17 +01:00
vecāks 0c9ce308c2
revīzija 2ab5593af6
2 mainīti faili ar 19 papildinājumiem un 0 dzēšanām

15
hosts/pulsebert/home.nix Normal file
Parādīt failu

@ -0,0 +1,15 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
htop
fortune
ddate
mpv
ncmpcpp
schedtool
screen
tmux
pulsemixer
];
}

Parādīt failu

@ -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