os/users/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
264 B
Nix
Raw Normal View History

{ self, ... }:
2023-09-12 20:07:05 +00:00
{
flake = {
nixosModules = rec {
root = import ./root;
b12f = {
imports = [
./b12f
self.nixosModules.email
self.nixosModules.uhk
];
};
2023-09-12 20:07:05 +00:00
yule = import ./yule;
};
};
}