summaryrefslogtreecommitdiff
path: root/users/seth/desktop/plasma.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-02-18 05:13:27 -0500
committerseth <[email protected]>2023-02-18 05:13:27 -0500
commit1d7b04a71c7222153ffa9cd48f73b51ea72204d1 (patch)
tree3d794209be0e2311dc76337c09c2cb39c52f6afb /users/seth/desktop/plasma.nix
parent8a8059d9889afcbcd8a133b0b186e3a97ce7ac23 (diff)
major refactor
- `mkHost` now accepts an optional `specialArgs` argument to be passed to `nixosSystem()` - the `modules` argument for `mkHMUser` is now optional
Diffstat (limited to 'users/seth/desktop/plasma.nix')
-rw-r--r--users/seth/desktop/plasma.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/users/seth/desktop/plasma.nix b/users/seth/desktop/plasma.nix
index 760df60..97e427f 100644
--- a/users/seth/desktop/plasma.nix
+++ b/users/seth/desktop/plasma.nix
@@ -1,13 +1,3 @@
-{
- config,
- pkgs,
- ...
-}: let
- inherit (config.seth) desktop;
- homePackages =
- if desktop == "plasma"
- then with pkgs; [catppuccin-kde]
- else [];
-in {
- home.packages = homePackages;
+{pkgs, ...}: {
+ home.packages = with pkgs; [catppuccin-kde];
}