yevaud, orm, kalessin: switch to nixpkgs-small
This commit is contained in:
parent
ad1f4d2cc5
commit
28698d1a60
17
flake.lock
17
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"
|
||||
}
|
||||
|
|
10
flake.nix
10
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; };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue