25 lines
732 B
Nix
25 lines
732 B
Nix
{
|
|
description = "Koishi's NixOS flake.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
impermanence.url = "github:nix-community/impermanence/master";
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
lanzaboote.url = "github:nix-community/lanzaboote/v0.3.0";
|
|
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs:
|
|
inputs.flake-parts.lib.mkFlake
|
|
{ inherit inputs; } {
|
|
systems = [
|
|
"x86_64-linux"
|
|
];
|
|
imports = [ ./spec ];
|
|
};
|
|
}
|