All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m0s
41 lines
630 B
Nix
41 lines
630 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
osConfig,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./firefox.nix
|
|
./thunderbird.nix
|
|
]
|
|
++ lib.optionals osConfig.modules.system.desktop.gnome.enable [
|
|
./gnome.nix
|
|
]
|
|
++ lib.optionals osConfig.modules.system.desktop.hyprland.enable [
|
|
./hyprland
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# ardour
|
|
# audacity
|
|
# blender
|
|
# gimp
|
|
# handbrake
|
|
# hunspell
|
|
# hunspellDicts.en-gb-large
|
|
# hunspellDicts.en-us-large
|
|
# inkscape
|
|
jellyfin-media-player
|
|
# krita
|
|
# libreoffice
|
|
# mkvtoolnix
|
|
# obs-studio
|
|
qbittorrent
|
|
# slack
|
|
# zoom-us
|
|
];
|
|
}
|