cleaned up gui-pkgs
and added plasma-browser-integration
This commit is contained in:
parent
c7187e2509
commit
f1bdf5d497
1 changed files with 7 additions and 4 deletions
|
@ -1,14 +1,17 @@
|
|||
{ pkgs, ... }: {
|
||||
# kde stuff
|
||||
environment.systemPackages = with pkgs; [
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
kdePackages = with pkgs.kdePackages; [ plasma-browser-integration ];
|
||||
packages = with pkgs; [
|
||||
wl-clipboard
|
||||
# catppuccin
|
||||
# catppuccin for kde plasma
|
||||
(catppuccin-kde.override {
|
||||
flavour = [ "mocha" "macchiato" "frappe" "latte" ];
|
||||
accents = [ "blue" ];
|
||||
winDecStyles = [ "classic" ];
|
||||
})
|
||||
];
|
||||
in {
|
||||
environment.systemPackages = lib.lists.unique (kdePackages ++ packages);
|
||||
|
||||
programs.partition-manager.enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue