Initial commit

This commit is contained in:
Aleksandr 2024-08-05 20:53:43 +03:00
commit 1ceaf7acff
26 changed files with 434 additions and 0 deletions

32
flake.nix Normal file
View file

@ -0,0 +1,32 @@
{
description = "nixos";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs:
let
options = {
inherit inputs;
modules = ./modules;
secrets = ./secrets;
};
in
{
nixosConfigurations = {
lil-maid = import machines/lil-maid options;
};
};
}