diff --git a/flake.lock b/flake.lock index 3f48baa..aa7aa6d 100644 --- a/flake.lock +++ b/flake.lock @@ -250,48 +250,6 @@ "type": "github" } }, - "ignis": { - "inputs": { - "ignis-gvc": "ignis-gvc", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1762970543, - "narHash": "sha256-7ipFVC9pvI564c22b1dIEzSQ8dZXK3cxh/tF/4tX38c=", - "owner": "ignis-sh", - "repo": "ignis", - "rev": "ba8b0e11c2462afc9fdc30ce6a72b4e94e8ee7c4", - "type": "github" - }, - "original": { - "owner": "ignis-sh", - "repo": "ignis", - "type": "github" - } - }, - "ignis-gvc": { - "inputs": { - "nixpkgs": [ - "ignis", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1754064086, - "narHash": "sha256-ft5KvY2OYrWF+jEsfBL/Zx8Iuo2C10C6COk8wHwZw34=", - "owner": "ignis-sh", - "repo": "ignis-gvc", - "rev": "f2c9f10d8b49cc38106a2f07a51ea959c6aa4e63", - "type": "github" - }, - "original": { - "owner": "ignis-sh", - "repo": "ignis-gvc", - "type": "github" - } - }, "impermanence": { "locked": { "lastModified": 1737831083, @@ -467,7 +425,6 @@ "disko": "disko_2", "flake-parts": "flake-parts_2", "home-manager": "home-manager", - "ignis": "ignis", "impermanence": "impermanence", "matugen": "matugen", "nixos-generators": "nixos-generators", diff --git a/flake.nix b/flake.nix index 6117968..39dad27 100644 --- a/flake.nix +++ b/flake.nix @@ -49,9 +49,6 @@ clan-core.inputs.nixpkgs.follows = "nixpkgs"; clan-core.inputs.flake-parts.follows = "flake-parts"; - ignis.url = "github:ignis-sh/ignis"; - ignis.inputs.nixpkgs.follows = "nixpkgs"; - matugen.url = "github:InioX/Matugen"; matugen.inputs.nixpkgs.follows = "nixpkgs"; diff --git a/home-manager/desktop/ignis.nix b/home-manager/desktop/ignis.nix deleted file mode 100644 index 4bc86ae..0000000 --- a/home-manager/desktop/ignis.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - self, - config, - inputs, - pkgs, - ... -}: -{ - imports = [ - self.homeManagerModules.dotfiles - inputs.ignis.homeManagerModules.default - ]; - - home.packages = [ - pkgs.brightnessctl - pkgs.swaybg - pkgs.swaylock - pkgs.tofi - pkgs.wl-gammarelay-rs - inputs.matugen.packages.${pkgs.system}.default - ]; - - programs.ignis = { - enable = true; - - addToPythonEnv = false; - - sass.enable = true; - sass.useDartSass = true; - - services.bluetooth.enable = true; - services.audio.enable = true; - services.network.enable = true; - }; - - xdg.configFile."ignis".source = - config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/rep/heath"; -}