1
1
Fork 0

Compare commits

..

No commits in common. "a79143bac4890b722d646d2169111bee654cb949" and "de8335dcec8105347a8c01fcee5f642aa48ed6c7" have entirely different histories.

3 changed files with 0 additions and 22 deletions

View file

@ -71,7 +71,6 @@ with lib;
tio.enable = true;
vscode.enable = true;
waybar.enable = true;
wireshark.enable = true;
wofi.enable = true;
#// wpaperd.enable = true;
})

View file

@ -1,17 +0,0 @@
{ config, lib, ... }:
with lib;
let
cfg = config.custom.programs.wireshark;
in
{
options.custom.programs.wireshark.enable = mkOption { default = false; };
config = mkIf cfg.enable {
# https://gitlab.com/wireshark/wireshark
programs.wireshark.enable = true;
users.users.${config.custom.username}.extraGroups = [ "wireshark" ];
};
}

View file

@ -4,8 +4,4 @@
profile = "desktop"; # Inherit desktop
services.auto-cpufreq.enable = true;
};
#!! Rebuild offline - drastically increases initial download and resulting closure size
# https://discourse.nixos.org/t/rebuild-nixos-offline/3679
system.includeBuildDependencies = true;
}