Compare commits

...

2 Commits

Author SHA1 Message Date
3864013e1a mv basic gui utilities to module 2025-07-10 16:28:08 +02:00
168492c26b mv mullvad to module 2025-07-10 16:20:06 +02:00
8 changed files with 62 additions and 11 deletions

View File

@ -20,28 +20,17 @@
font-awesome
thunderbird
lf
qalculate-qt
baobab
arduino-ide
piper
calibre
loupe
gimp3
mullvad-vpn
base16-schemes
tor
wireshark
tshark
freecad-wayland
aegisub
audacity
mpv
fritzing
networkmanagerapplet
gparted
gnome-disk-utility
sl
vlc
];
services.ratbagd.enable = true;

View File

@ -15,6 +15,8 @@
./office
./comm
./displaymanager
./vpn
./utilities
];
# Timzone and locales (same for all machines so I put it here)

View File

@ -23,6 +23,8 @@ in
element.enable = true;
webcord.enable = true;
sddm.enable = true;
mullvad.enable = true;
gui-utilities.enable = true;
};
};
}

View File

@ -23,6 +23,8 @@ in
webcord.enable = true;
element.enable = true;
sddm.enable = true;
mullvad.enable = true;
gui-utilities.enable = true;
};
services.logind.lidSwitch = "ignore";
};

View File

@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
{
imports = [
./gui-utilities.nix
];
}

View File

@ -0,0 +1,26 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.gui-utilities.enable = mkOption {
type = types.bool;
default = false;
description = "basic gui-utilities";
};
config = mkIf config.smayzy.gui-utilities.enable {
environment.systemPackages = with pkgs; [
qalculate-qt
baobab
loupe
gimp3
wireshark
audacity
networkmanagerapplet
gparted
gnome-disk-utility
vlc
];
};
}

View File

@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
{
imports = [
./mullvad.nix
];
}

View File

@ -0,0 +1,18 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.mullvad.enable = mkOption {
type = types.bool;
default = false;
description = "mullvad's software";
};
config = mkIf config.smayzy.mullvad.enable {
environment.systemPackages = with pkgs; [
mullvad-vpn
mullvad-browser
];
};
}