All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m3s
34 lines
533 B
Nix
34 lines
533 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./common/optional/graphical/firefox.nix
|
|
./common/optional/graphical/hyprland
|
|
./common/optional/graphical/libreoffice.nix
|
|
./common/optional/graphical/mimeapps.nix
|
|
./common/optional/graphical/thunderbird.nix
|
|
];
|
|
|
|
programs.nh.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
# ardour
|
|
audacity
|
|
blender
|
|
gimp
|
|
handbrake
|
|
inkscape
|
|
jellyfin-media-player
|
|
krita
|
|
lutris
|
|
mkvtoolnix
|
|
# obs-studio
|
|
unstable.pcsx2
|
|
qbittorrent
|
|
xemu
|
|
];
|
|
}
|