32 lines
857 B
Nix
32 lines
857 B
Nix
{
|
|
description = "system config";
|
|
|
|
inputs = {
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-24.11";
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
icomidal = {
|
|
url = "git+https://deemz.org/git/joeri/icomidal";
|
|
inputs.nixpkgs.follows = "nixpkgs-stable";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs-stable, nixpkgs-unstable, icomidal }:
|
|
let
|
|
system = "x86_64-linux";
|
|
in {
|
|
nixosConfigurations = {
|
|
t14 = nixpkgs-stable.lib.nixosSystem {
|
|
specialArgs = { inherit system; };
|
|
modules = [
|
|
./t14/configuration.nix
|
|
];
|
|
};
|
|
deemz = nixpkgs-stable.lib.nixosSystem {
|
|
specialArgs = { inherit system; icomidal=icomidal; };
|
|
modules = [
|
|
./deemz.org/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|