From c85ba298330d2743761c9f47bd4a97bb464968b2 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Sat, 24 Aug 2024 06:21:15 +0000 Subject: add nixvim and spicetify --- flake.nix | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 56b25d5..a78b6ce 100644 --- a/flake.nix +++ b/flake.nix @@ -8,9 +8,20 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + + nixvim = { + url = "github:nix-community/nixvim"; + # If using a stable channel you can use `url = "github:nix-community/nixvim/nixos-"` + inputs.nixpkgs.follows = "nixpkgs"; + }; + + spicetify-nix = { + url = "github:Gerg-L/spicetify-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { self, nixpkgs, ... }@inputs: + outputs = { nixpkgs, home-manager, nixvim, spicetify-nix, ... }@inputs: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; @@ -20,7 +31,9 @@ specialArgs = {inherit inputs;}; modules = [ ./configuration.nix - inputs.home-manager.nixosModules.default + home-manager.nixosModules.home-manager { + home-manager.extraSpecialArgs = { inherit inputs; }; + } ]; }; devShells.x86_64-linux = { -- cgit v1.2.3