diff --git a/packages/quickshell/default.nix b/packages/quickshell/default.nix deleted file mode 100644 index 12e759f..0000000 --- a/packages/quickshell/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{inputs, ...}: { - imports = [ - inputs.caelestia.nixosModules.default - { - services.caelestia-shell.enable = true; - } - ]; -} diff --git a/packages/quickshell/home.nix b/packages/quickshell/home.nix deleted file mode 100644 index fecffd4..0000000 --- a/packages/quickshell/home.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ - config, - pkgs, - lib, - system, - inputs, - ... -}: let - # Fetch the entire repository from Gitea - # This creates a path in the Nix store containing the repo's contents - caelestia = pkgs.fetchFromGitHub { - owner = "liperium"; # The repository owner - repo = "caelestia-shell"; # The repository name - rev = "main"; # Or a specific commit hash/tag like "v1.0" - hash = "sha256-s7UodKNURqtFYARD+qjhxnm17uocuz0A3znPneZMDxM="; # Set this to "" or a dummy value first - }; -in { - imports = [ - ]; - home.packages = with pkgs; [ - inputs.quickshell.packages.${system}.default - fish - jq - fd - (pkgs.python3.withPackages (python-pkgs: - with python-pkgs; [ - aubio - pyaudio - numpy - ])) - cava - bluez - ddcutil - brightnessctl - curl - material-symbols - ]; - home.file.".config/quickshell/caelestia" = { - source = caelestia; - }; -}