Home Gen138 @ 2024-04-28-17:46

This commit is contained in:
Jonas Röger 2024-04-28 17:46:24 +02:00
parent d9648395c2
commit 94160d249e
5 changed files with 24 additions and 7 deletions

View File

@ -9,8 +9,8 @@
./firefox.nix ./firefox.nix
./hyprland ./hyprland
./kitty ./kitty
./plasma.nix
./ssh.nix ./ssh.nix
./themes/qt
./waybar ./waybar
./yubikey.nix ./yubikey.nix
./zsh.nix ./zsh.nix

View File

@ -0,0 +1,7 @@
{
config,
pkgs,
...
}: {
qt.style.package = pkgs.libsForQt5.qtstyleplugin-kvantum;
}

View File

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

View File

@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
qt.enable = true;
home.packages = [
pkgs.utterly-nord-plasma
];
}

View File

@ -13,11 +13,5 @@ in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
# Enable plasma # Enable plasma
services.xserver.desktopManager.plasma5.enable = true; services.xserver.desktopManager.plasma5.enable = true;
# Install themes and integration
environment.systemPackages = with pkgs; [
utterly-nord-plasma
libsForQt5.qtstyleplugin-kvantum
];
}; };
} }