WIP new top level flakes break down
This commit is contained in:
parent
2238aaf367
commit
7215fd37bf
57 changed files with 3033 additions and 69 deletions
16
flakes/common/flake.nix
Normal file
16
flakes/common/flake.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
let
|
||||
utils = import ./utils.nix;
|
||||
in
|
||||
with utils;
|
||||
{
|
||||
description = "Common NixOS configuration modules and Home Manager modules that require not other inputs beyond nixpkgs or home-manager itself. This is made by me for me and not designed to be general purpose for anyone else, but could be useful nontheless.";
|
||||
inputs = { };
|
||||
outputs =
|
||||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
nixosModules = importAll ./nix_modules;
|
||||
homeManagerModules = importAll ./hm_modules;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue