[NixOS] Add a bunch of random applications
This commit is contained in:
parent
45b008bf26
commit
0d5bdb70f7
@ -118,8 +118,10 @@ in
|
|||||||
|
|
||||||
# Applications
|
# Applications
|
||||||
calibre
|
calibre
|
||||||
|
discord
|
||||||
emacs
|
emacs
|
||||||
firefox
|
firefox
|
||||||
|
kleopatra
|
||||||
google-chrome
|
google-chrome
|
||||||
hexchat
|
hexchat
|
||||||
keybase-gui
|
keybase-gui
|
||||||
@ -146,6 +148,7 @@ in
|
|||||||
compton
|
compton
|
||||||
feh
|
feh
|
||||||
gnome3.gpaste
|
gnome3.gpaste
|
||||||
|
kdeconnect
|
||||||
networkmanagerapplet
|
networkmanagerapplet
|
||||||
pasystray-appindicator
|
pasystray-appindicator
|
||||||
pinentry
|
pinentry
|
||||||
@ -183,6 +186,7 @@ in
|
|||||||
inotify-tools
|
inotify-tools
|
||||||
ncdu
|
ncdu
|
||||||
pass
|
pass
|
||||||
|
plasma-workspace
|
||||||
python-with-my-packages
|
python-with-my-packages
|
||||||
qt5.qttools
|
qt5.qttools
|
||||||
rcm
|
rcm
|
||||||
@ -207,7 +211,14 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
||||||
programs.zsh.enable = true;
|
# Enabling zsh will clobber path because of the way it sets up /etc/zshenv
|
||||||
|
# programs.zsh.enable = true;
|
||||||
|
# Instead we just make sure to source profile from zsh
|
||||||
|
environment.etc."zshenv".text =
|
||||||
|
''
|
||||||
|
if [ -n "$__ETC_PROFILE_DONE" ]; then return; fi
|
||||||
|
source /etc/profile
|
||||||
|
'';
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
services.avahi = {
|
services.avahi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user