c5209b0d90
need to add all my stuff btw
14 lines
164 B
Nix
14 lines
164 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
shared = import ./shared.nix { inherit pkgs; };
|
|
in
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./config.nix
|
|
];
|
|
|
|
_module.args.shared = shared;
|
|
}
|