Merge branch 'nixos' into nixos-work

This commit is contained in:
Moritz Böhme 2023-04-26 09:03:44 +02:00
commit 55ba8d6127
19 changed files with 174 additions and 17 deletions

View file

@ -62,6 +62,8 @@ in
fish.enable = true;
git.enable = true;
gpg.enable = true;
navi.enable = true;
tmux.enable = true;
};
};
@ -98,8 +100,8 @@ in
exa
gparted
neofetch
reptyr
ripgrep
tmux
up
viu
wget
@ -143,7 +145,6 @@ in
];
};
zoxide.enable = true;
navi.enable = true;
};
home = {
username = "moritz";

View file

@ -48,7 +48,6 @@ with lib; {
pavucontrol
stable.libreoffice # HACK to fix build error
stable.signal-desktop
synology-drive-client
texlive.combined.scheme-full
thunderbird
vlc

View file

@ -57,4 +57,8 @@ with lib;
};
};
};
environment.systemPackages = with pkgs; [
synology-drive-client
];
}