mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
17 lines
345 B
Nix
17 lines
345 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.user.utils;
|
|
|
|
in
|
|
{ options.modules.user.utils = { enable = mkEnableOption "user.utils"; };
|
|
imports = [ ./modules ];
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
wget curl tree neofetch
|
|
unzip fping calc fd pciutils
|
|
rsync zip lshw
|
|
];
|
|
};
|
|
}
|