diff options
| author | schererleander <leander@schererleander.de> | 2026-01-08 12:26:04 +0100 |
|---|---|---|
| committer | Leander Scherer <leander@schererleander.de> | 2026-01-08 19:08:13 +0100 |
| commit | 00f6f55df8924049b37f76e5a1fec1f4db0f6514 (patch) | |
| tree | a608331ab3d26d66fa84094f91b5c0f066ada950 | |
| parent | 67681d50b7a91e2d035b1f3dabcfb677d1a96abe (diff) | |
fix(inputs): infinite loop import inputs
| -rw-r--r-- | hosts/adam/configuration.nix | 6 | ||||
| -rw-r--r-- | modules/users/media/nixcord/default.nix | 2 | ||||
| -rw-r--r-- | modules/users/media/spicetify/default.nix | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix index 491ab90..27aa010 100644 --- a/hosts/adam/configuration.nix +++ b/hosts/adam/configuration.nix @@ -69,7 +69,11 @@ home-manager.users.${username} = { home.username = username; home.homeDirectory = "/home/${username}"; - imports = [ ../../modules/users ]; + imports = [ + ../../modules/users + inputs.nixcord.homeModules.nixcord + inputs.spicetify-nix.homeManagerModules.spicetify + ]; programs.home-manager.enable = true; home.packages = with pkgs; [ diff --git a/modules/users/media/nixcord/default.nix b/modules/users/media/nixcord/default.nix index 329fa18..d421abf 100644 --- a/modules/users/media/nixcord/default.nix +++ b/modules/users/media/nixcord/default.nix @@ -1,7 +1,6 @@ { config, lib, - inputs, ... }: let @@ -9,7 +8,6 @@ let inherit (lib) mkOption types mkIf; in { - imports = [ inputs.nixcord.homeModules.nixcord ]; options.nx.media.nixcord = { enable = lib.mkOption { description = "Enable nixcord and setup"; diff --git a/modules/users/media/spicetify/default.nix b/modules/users/media/spicetify/default.nix index 239f80f..e78b779 100644 --- a/modules/users/media/spicetify/default.nix +++ b/modules/users/media/spicetify/default.nix @@ -12,8 +12,6 @@ let inherit (lib) mkOption types mkIf; in { - imports = [ inputs.spicetify-nix.homeManagerModules.spicetify ]; - options.nx.media.spicetify = { enable = mkOption { description = "Command-line tool to customize the official Spotify client"; |
