diff --git a/flake.lock b/flake.lock index 03b5ab8..21f700f 100644 --- a/flake.lock +++ b/flake.lock @@ -151,6 +151,22 @@ "type": "github" } }, + "nixpkgsSmall": { + "locked": { + "lastModified": 1726611721, + "narHash": "sha256-oSDOQ5c7CTVzkaG5A19UW3Yxsv9TLNFNcrvQT9F4Pz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a51a2cef87fc37c7e31d3a5345bc493e5f7a5f6e", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-24.05-small", + "repo": "nixpkgs", + "type": "github" + } + }, "nur": { "locked": { "lastModified": 1725486293, @@ -196,6 +212,7 @@ "colmena": "colmena", "home-manager": "home-manager_2", "nixpkgs": "nixpkgs", + "nixpkgsSmall": "nixpkgsSmall", "nur": "nur", "plasma-manager": "plasma-manager" } diff --git a/flake.nix b/flake.nix index 4f0028b..928ad7e 100644 --- a/flake.nix +++ b/flake.nix @@ -2,6 +2,8 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; + nixpkgsSmall.url = "github:NixOS/nixpkgs/nixos-24.05-small"; + home-manager = { url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; @@ -31,7 +33,7 @@ birdsong.url = "git+https://git.qenya.tel/qenya/birdsong?ref=main"; }; - outputs = inputs@{ self, nixpkgs, home-manager, plasma-manager, nur, agenix, colmena, birdsong, ... }: { + outputs = inputs@{ self, nixpkgs, nixpkgsSmall, home-manager, plasma-manager, nur, agenix, colmena, birdsong, ... }: { nixosModules.default = { nix.settings.experimental-features = "nix-command flakes"; nix.nixPath = [ "nixpkgs=flake:nixpkgs" ]; @@ -74,7 +76,11 @@ meta = { nixpkgs = import nixpkgs { system = "x86_64-linux"; }; nodeNixpkgs = { - kalessin = import nixpkgs { system = "aarch64-linux"; }; + kilgharrah = import nixpkgs { system = "x86_64-linux"; }; + tohru = import nixpkgs { system = "x86_64-linux"; }; + yevaud = import nixpkgsSmall { system = "x86_64-linux"; }; + orm = import nixpkgsSmall { system = "x86_64-linux"; }; + kalessin = import nixpkgsSmall { system = "aarch64-linux"; }; }; specialArgs = { inherit inputs; }; };