summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2024-08-12 21:58:23 -0400
committervin <git@vineetk.net>2024-08-12 21:58:23 -0400
commit610531670c37084c76033d191e3a267e86f3b46c (patch)
treee59b06322ccc3a7360c1f50118304d01f3895274 /flake.nix
parent2838ec11c9fd8a2e26e1b82138ead65a3524afa6 (diff)
fail at trying add external flake derivation for everblush gtk theme
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/flake.nix b/flake.nix
index 51f2d12..8269b27 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,23 +8,23 @@
8 url = "github:nix-community/home-manager/release-24.05"; 8 url = "github:nix-community/home-manager/release-24.05";
9 inputs.nixpkgs.follows = "nixpkgs"; 9 inputs.nixpkgs.follows = "nixpkgs";
10 }; 10 };
11
12 everblush-gtk = {
13 url = "github:everblush/gtk";
14 inputs.nixpkgs.follows = "nixpkgs";
15 };
11 }; 16 };
12 17
13 outputs = { self, home-manager, nixpkgs, ... }@attrs: { 18 outputs = { self, home-manager, nixpkgs, everblush-gtk, ... }@inputs: {
14 # TODO: deduplicate this 19 # TODO: deduplicate this
15 nixosConfigurations = { 20 nixosConfigurations = {
16 demiurge = nixpkgs.lib.nixosSystem {
17 system = "x86_64-linux";
18 specialArgs = attrs;
19 modules = [ ./hosts/demiurge ];
20 };
21
22 lappy = nixpkgs.lib.nixosSystem { 21 lappy = nixpkgs.lib.nixosSystem {
23 system = "x86_64-linux"; 22 system = "x86_64-linux";
24 specialArgs = attrs; 23 specialArgs = inputs;
25 modules = [ 24 modules = [
26 ./hosts/lappy 25 ./hosts/lappy
27 home-manager.nixosModules.home-manager { 26 home-manager.nixosModules.home-manager {
27 home-manager.extraSpecialArgs = { inherit inputs; };
28 home-manager.useGlobalPkgs = true; 28 home-manager.useGlobalPkgs = true;
29 home-manager.useUserPackages = true; 29 home-manager.useUserPackages = true;
30 home-manager.users.vin = import ./home.nix; 30 home-manager.users.vin = import ./home.nix;