Compare commits

..

4 Commits

Author SHA1 Message Date
Alexandre
d5d1b72de9 Added ARK, for archives 2026-03-16 21:04:00 +01:00
Alexandre
cb6449ccae Added VLC 2026-03-16 20:49:10 +01:00
Alexandre
790b4c992f Added gwenview in desktop utils 2026-03-16 20:48:33 +01:00
Alexandre
95fa622c26 Added okular in desktop utils 2026-03-16 20:42:42 +01:00
3 changed files with 11 additions and 0 deletions

View File

@ -10,6 +10,7 @@ in
modules.common.module
modules.nixos.secrets
modules.nixos.desktop.bluetooth
modules.nixos.desktop.utils
modules.nixos.gaming.amd
modules.nixos.gaming.starCitizen
modules.nixos.gaming.steam

View File

@ -27,6 +27,7 @@
lightDM = ./nixos/desktop/lightDM.nix;
xfce = ./nixos/desktop/xfce.nix;
bluetooth = ./nixos/desktop/bluetooth.nix;
utils = ./nixos/desktop/utils.nix;
};
gaming = {
amd = ./nixos/gaming/amd.nix;

View File

@ -0,0 +1,9 @@
{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
kdePackages.gwenview
kdePackages.ark
vlc
];
}