init
This commit is contained in:
commit
26a95a16ed
3 changed files with 78 additions and 0 deletions
29
flake.nix
Normal file
29
flake.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue