nix-config/modules/nix/utilities/gui-utilities.nix
smayzy 65ffb35fd0
Some checks failed
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Failing after 35s
remove network manager from server and desktop and only enable it on laptop
2025-08-27 14:35:27 +02:00

30 lines
457 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.gui-utilities.enable = mkOption {
type = types.bool;
default = false;
description = "basic gui-utilities";
};
config = mkIf config.smayzy.gui-utilities.enable {
environment.systemPackages = with pkgs; [
qalculate-qt
baobab
loupe
gimp3
audacity
gparted
gnome-disk-utility
vlc
];
};
}