mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
mixed: gpg fixes, refactoring
This commit is contained in:
parent
53eed4454d
commit
1ec876812e
50 changed files with 235 additions and 183 deletions
13
tree.nix
13
tree.nix
|
|
@ -25,15 +25,16 @@
|
|||
];
|
||||
};
|
||||
# Required for all-system common imports
|
||||
system.functor.enable = true;
|
||||
common.functor.enable = true;
|
||||
# Re-map home directory profiles
|
||||
home.evaluateDefault = true;
|
||||
kat.evaluateDefault = true;
|
||||
"kat/user".evaluateDefault = true;
|
||||
# Allow profile importing
|
||||
"nixos/*".functor.enable = true;
|
||||
"darwin/*".functor.enable = true;
|
||||
"home/*".functor.enable = true;
|
||||
"kat/*".functor.enable = true;
|
||||
# Various modules
|
||||
"nixos/modules" = {
|
||||
"modules/nixos" = {
|
||||
functor = {
|
||||
enable = true;
|
||||
external = with inputs;
|
||||
|
|
@ -48,7 +49,7 @@
|
|||
]);
|
||||
};
|
||||
};
|
||||
"darwin/modules" = {
|
||||
"modules/darwin" = {
|
||||
functor = {
|
||||
enable = true;
|
||||
external = with inputs; [
|
||||
|
|
@ -57,7 +58,7 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
"home/modules" = {
|
||||
"modules/home" = {
|
||||
functor = {
|
||||
enable = true;
|
||||
external = with inputs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue