This commit is contained in:
outfoxxed 2025-07-28 23:56:24 -07:00
commit 26a95a16ed
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
3 changed files with 78 additions and 0 deletions

29
flake.nix Normal file
View file

@ -0,0 +1,29 @@
{
nixConfig = {
experimental-features = [
"nix-command"
"flakes"
"pipe-operators"
];
};
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
impurity.url = "github:outfoxxed/impurity.nix";
};
outputs = inputs @ { self, nixpkgs, ... }: let
specialArgs = { flake = self; inherit inputs; };
in {
nixosConfigurations = {
lappy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
inherit specialArgs;
modules = [
./allsystems.nix
];
};
};
};
}