19 lines
397 B
Nix
19 lines
397 B
Nix
{ inputs, ... }:
|
|
let
|
|
inherit (inputs.nixpkgs-unstable.lib) nixosSystem;
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import inputs.nixpkgs-unstable {
|
|
inherit system;
|
|
config = { allowUnfree = true; };
|
|
};
|
|
in nixosSystem {
|
|
inherit system pkgs;
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
../../modules/security.nix
|
|
../../modules/common-system.nix
|
|
./configuration.nix
|
|
];
|
|
}
|