move apps into separate file
This commit is contained in:
parent
943361757c
commit
db291c0b80
2 changed files with 46 additions and 42 deletions
45
hosts/apps.nix
Normal file
45
hosts/apps.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Command line utilities
|
||||||
|
wget
|
||||||
|
neofetch
|
||||||
|
pfetch
|
||||||
|
fortune
|
||||||
|
killall
|
||||||
|
trash-cli # aliased to rm in .bashrc
|
||||||
|
unzip
|
||||||
|
pipes
|
||||||
|
wine
|
||||||
|
pandoc
|
||||||
|
texlive.combined.scheme-full
|
||||||
|
|
||||||
|
# Programming languages
|
||||||
|
jdk
|
||||||
|
|
||||||
|
# Tray applications
|
||||||
|
networkmanagerapplet # nm-applet
|
||||||
|
nextcloud-client
|
||||||
|
|
||||||
|
# System GUI applications
|
||||||
|
gnome.nautilus
|
||||||
|
gnome.file-roller
|
||||||
|
gnome.gnome-calculator
|
||||||
|
gnome.gnome-disk-utility
|
||||||
|
|
||||||
|
# Applications
|
||||||
|
discord
|
||||||
|
gimp
|
||||||
|
krita
|
||||||
|
inkscape
|
||||||
|
obs-studio
|
||||||
|
qbittorrent
|
||||||
|
pureref
|
||||||
|
libreoffice
|
||||||
|
gnome.ghex
|
||||||
|
|
||||||
|
# Games
|
||||||
|
prismlauncher
|
||||||
|
];
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./apps.nix
|
||||||
../modules/emacs
|
../modules/emacs
|
||||||
../modules/fcitx5
|
../modules/fcitx5
|
||||||
../modules/firefox
|
../modules/firefox
|
||||||
|
@ -78,48 +79,6 @@ in
|
||||||
homeDirectory = "/home/${user}";
|
homeDirectory = "/home/${user}";
|
||||||
|
|
||||||
stateVersion = "22.05";
|
stateVersion = "22.05";
|
||||||
|
|
||||||
packages = with pkgs; [
|
|
||||||
# Command line utilities
|
|
||||||
wget
|
|
||||||
neofetch
|
|
||||||
pfetch
|
|
||||||
fortune
|
|
||||||
killall
|
|
||||||
trash-cli # aliased to rm in .bashrc
|
|
||||||
unzip
|
|
||||||
pipes
|
|
||||||
wine
|
|
||||||
pandoc
|
|
||||||
texlive.combined.scheme-full
|
|
||||||
|
|
||||||
# Programming languages
|
|
||||||
jdk
|
|
||||||
|
|
||||||
# Tray applications
|
|
||||||
networkmanagerapplet # nm-applet
|
|
||||||
nextcloud-client
|
|
||||||
|
|
||||||
# System GUI applications
|
|
||||||
gnome.nautilus
|
|
||||||
gnome.file-roller
|
|
||||||
gnome.gnome-calculator
|
|
||||||
gnome.gnome-disk-utility
|
|
||||||
|
|
||||||
# Applications
|
|
||||||
discord
|
|
||||||
gimp
|
|
||||||
krita
|
|
||||||
inkscape
|
|
||||||
obs-studio
|
|
||||||
qbittorrent
|
|
||||||
pureref
|
|
||||||
libreoffice
|
|
||||||
gnome.ghex
|
|
||||||
|
|
||||||
# Games
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue