diff options
author | Karel Kočí <cynerd@email.cz> | 2024-11-25 20:37:11 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-11-25 20:37:11 +0100 |
commit | 13931279551d856824bd784886ba536c962c2735 (patch) | |
tree | d7507c43cfb9a763a1c8d49468e12aeef548a52a /nixos/modules/develop.nix | |
parent | 1a85ae7a0ccc8eb7fd4ba2bf91309be0de44946c (diff) | |
download | nixos-personal-13931279551d856824bd784886ba536c962c2735.tar.gz nixos-personal-13931279551d856824bd784886ba536c962c2735.tar.bz2 nixos-personal-13931279551d856824bd784886ba536c962c2735.zip |
nixos: various fixes and temporally disables
Diffstat (limited to 'nixos/modules/develop.nix')
-rw-r--r-- | nixos/modules/develop.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix index 446d205..e61ab3e 100644 --- a/nixos/modules/develop.nix +++ b/nixos/modules/develop.nix @@ -157,7 +157,10 @@ in { # Images imagemagick ]; - programs.wireshark.package = pkgs.wireshark; + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + }; documentation = { nixos = { |