diff --git a/flake.nix b/flake.nix index efe0d7a..8e17499 100644 --- a/flake.nix +++ b/flake.nix @@ -90,7 +90,6 @@ { nixpkgs.pkgs = pkgs; } ./system/configuration.nix ./system/secrets.nix - ./system/specialisation.nix ./system/greetd.nix { login-manager.greetd.enable = desktop == "sway"; } diff --git a/system/specialisation.nix b/system/specialisation.nix deleted file mode 100644 index 23b410f..0000000 --- a/system/specialisation.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ pkgs, ... }: -{ - specialisation.dark-theme.configuration = { - nixpkgs.overlays = [ (final: prev: { uservars = prev.uservars; }) ]; - }; - specialisation.light-theme.configuration = { - nixpkgs.overlays = [ - (final: prev: { - uservars = prev.uservars // rec { - theme = prev.uservars.themes.light; - color = theme.color; - }; - }) - ]; - }; - environment.systemPackages = [ - (pkgs.writeShellScriptBin "theme" '' - sudo "/nix/var/nix/profiles/system/specialisation/$1-theme/bin/switch-to-configuration" test - '') - ]; -}