pulsebert: add home-manager home.nix

Этот коммит содержится в:
Astro 2019-02-19 23:29:17 +01:00
родитель 0c9ce308c2
Коммит 2ab5593af6
2 изменённых файлов: 19 добавлений и 0 удалений

15
hosts/pulsebert/home.nix Обычный файл
Просмотреть файл

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

Просмотреть файл

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