Compare commits

..

2 Commits

Author SHA1 Message Date
6d245ab923 clean wireshark
Some checks failed
nixos config pipeline / show-flake (push) Successful in 34s
nixos config pipeline / deploy (push) Failing after 47s
2026-04-07 18:05:07 +02:00
20413934e4 clean chromium 2026-04-07 18:05:07 +02:00
7 changed files with 4 additions and 56 deletions

View File

@ -1,23 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.chromium.enable = mkOption {
type = types.bool;
default = false;
description = "chromium";
};
config = mkIf config.smayzy.chromium.enable {
programs.chromium.enable = true;
environment.systemPackages = with pkgs; [
chromium
];
};
}

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./chromium.nix
];
}

View File

@ -3,7 +3,6 @@
imports = [
./audio
./base-cli
./browser
./containers
./de
./displaymanager

View File

@ -28,13 +28,12 @@ in
gaming.enable = true;
};
tor.enable = true;
chromium.enable = true;
wireshark.enable = true;
alacritty.enable = true;
mail.enable = true;
ardour.enable = true;
};
programs.firefox.enable = true;
programs.wireshark.enable = true;
environment.systemPackages = with pkgs; [
librewolf
prismlauncher
@ -58,6 +57,7 @@ in
qbittorrent
android-tools
gdb
chromium
];
};
}

View File

@ -32,13 +32,12 @@ in
};
tor.enable = true;
alacritty.enable = true;
chromium.enable = true;
wireshark.enable = true;
steam.enable = true;
mail.enable = true;
};
programs.firefox.enable = true;
programs.wireshark.enable = true;
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
networkmanagerapplet
@ -60,6 +59,7 @@ in
arduino-cli
firejail
gdb
chromium
];
};
}

View File

@ -2,7 +2,6 @@
{
imports = [
./openssh.nix
./wireshark.nix
./mail.nix
];
}

View File

@ -1,21 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.wireshark.enable = mkOption {
type = types.bool;
default = false;
description = "wireshark";
};
config = mkIf config.smayzy.wireshark.enable {
programs.wireshark.enable = true;
environment.systemPackages = with pkgs; [ wireshark ];
};
}