feat: add gparted agent

This commit is contained in:
Peritia 2025-09-29 16:26:28 +02:00
parent 4bdd918479
commit 8342fcecce
2 changed files with 24 additions and 0 deletions

View file

@ -8,5 +8,6 @@
./flatpak.nix
./wireshark.nix
./gpg.nix
./gparted.nix
];
}

View file

@ -0,0 +1,23 @@
# GParted (System Module)
#
# Provides:
# - GParted installation (GUI partition editor)
#
# Options:
# - enable -> Enable GParted system module
#
{ config, lib, pkgs, ... }:
let
cfg = config.nyx-module.system.gparted;
in {
options.nyx-module.system.gparted = {
enable = lib.mkEnableOption "Enable GParted (system module)";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
gparted
];
};
}