nix-config/modules/nix/utilities/gui-utilities.nix
smayzy 092579af98
All checks were successful
nix flake show / show-flake (push) Successful in 27s
format with nixfmt to nixpkgs standarts
2025-07-24 19:19:46 +02:00

32 lines
500 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
wireshark
audacity
networkmanagerapplet
gparted
gnome-disk-utility
vlc
];
};
}