This commit is contained in:
Hadi
2024-03-13 11:31:15 +01:00
parent 884b366ed2
commit a17cf20b6d
17 changed files with 152 additions and 40 deletions

View File

@@ -12,9 +12,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
apple-fonts.url = "github:Lyndeno/apple-fonts.nix";
spicetify-nix.url = "github:the-argus/spicetify-nix";
};
outputs = inputs@{ nixpkgs, home-manager, nixvim, ... }: {
outputs = inputs@{ nixpkgs, home-manager, nixvim, spicetify-nix, ... }: {
nixosConfigurations = {
nixy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
@@ -27,7 +28,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.hadi = import ./home/home.nix;
home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.extraSpecialArgs = { inherit inputs; inherit spicetify-nix; };
}
];
};