From 1d7b04a71c7222153ffa9cd48f73b51ea72204d1 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 18 Feb 2023 05:13:27 -0500 Subject: major refactor - `mkHost` now accepts an optional `specialArgs` argument to be passed to `nixosSystem()` - the `modules` argument for `mkHMUser` is now optional --- users/seth/desktop/plasma.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'users/seth/desktop/plasma.nix') 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]; } -- cgit v1.2.3