mirror of https://gitlab.crans.org/nounous/nixos
20 lines
396 B
Nix
20 lines
396 B
Nix
{
|
|
description = "Configuration NixOS du Crans";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
};
|
|
|
|
outputs = inputs @ { self, nixpkgs, flake-parts, ... }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
|
|
systems = [ "x86_64-linux" ];
|
|
|
|
flake = { };
|
|
|
|
perSystem = { config, ... }: { };
|
|
};
|
|
|
|
}
|