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 = [ imports = [
./audio ./audio
./base-cli ./base-cli
./browser
./containers ./containers
./de ./de
./displaymanager ./displaymanager

View File

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

View File

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

View File

@ -2,7 +2,6 @@
{ {
imports = [ imports = [
./openssh.nix ./openssh.nix
./wireshark.nix
./mail.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 ];
};
}