This commit is contained in:
Joeri Exelmans 2025-03-04 10:55:48 +01:00
commit 6822350a3b
11 changed files with 1055 additions and 0 deletions

28
flake.nix Normal file
View file

@ -0,0 +1,28 @@
{
description = "system config";
inputs = {
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-24.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs-stable, nixpkgs-unstable }:
let
system = "x86_64-linux";
in {
nixosConfigurations = {
t14 = nixpkgs-stable.lib.nixosSystem {
specialArgs = { inherit system; };
modules = [
./t14/configuration.nix
];
};
deemz = nixpkgs-unstable.lib.nixosSystem {
specialArgs = { inherit system; };
modules = [
./deemz.org/configuration.nix
];
};
};
};
}