KDE specific themeing because fun

This commit is contained in:
DashieTM 2024-09-21 14:11:35 +02:00
parent f2055e0d10
commit 531e37fbe3
6 changed files with 347 additions and 0 deletions

View file

@ -65,6 +65,9 @@
icon-library
kdePackages.breeze-icons
kdePackages.breeze
libsForQt5.breeze-qt5
kdePackages.qtstyleplugin-kvantum
libsForQt5.qtstyleplugin-kvantum
libadwaita
libxkbcommon
nixfmt-rfc-style

View file

@ -27,6 +27,7 @@
./oxi
./piper.nix
./podman.nix
./docker.nix
./printing.nix
./scripts.nix
./sddm.nix

View file

@ -0,0 +1,32 @@
{
lib,
config,
options,
pkgs,
...
}:
{
# TODO make exclusive with docker
options.mods.docker = {
enable = lib.mkOption {
default = false;
example = false;
type = lib.types.bool;
description = "Enables and configures docker";
};
};
config = lib.mkIf config.mods.docker.enable (
lib.optionalAttrs (options ? virtualisation.docker) {
environment.systemPackages = with pkgs; [
docker-compose
dive
];
virtualisation = {
containers.enable = true;
docker = {
enable = true;
};
};
}
);
}