mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
16 lines
312 B
Nix
16 lines
312 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.user.gui.utils;
|
|
|
|
in
|
|
{ options.modules.user.gui.utils = { enable = mkEnableOption "Enable desktop utils"; };
|
|
config = mkIf cfg.enable {
|
|
programs.btop.enable = true;
|
|
home.packages = with pkgs; [
|
|
gimp
|
|
libreoffice
|
|
];
|
|
};
|
|
}
|