fully refactored stolen config :D

This commit is contained in:
Charlie Root 2024-04-10 17:39:26 +02:00
commit 478e81cf03
39 changed files with 1603 additions and 206 deletions

View file

@ -0,0 +1,16 @@
{ inputs, ... }:
let
inherit (inputs) self;
inherit (self) lib;
in {
vali = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit lib inputs self; };
};
modules = [
./vali
../modules/vali
inputs.home-manager.noxosModules.home-manager
inputs.agenix.noxosModules.default
];
}