diff options
| author | Fuwn <[email protected]> | 2024-10-03 03:49:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 03:49:43 -0700 |
| commit | 06e843aa0a3ff563b56d6c2146a97d4270664c05 (patch) | |
| tree | 1cf3f09a153a29bab435c37111e9aa5387adbc54 /home/ebisu/core/default.nix | |
| parent | home: move communication to kansai (diff) | |
| download | nixos-config-06e843aa0a3ff563b56d6c2146a97d4270664c05.tar.xz nixos-config-06e843aa0a3ff563b56d6c2146a97d4270664c05.zip | |
akashi: fix up home
Diffstat (limited to 'home/ebisu/core/default.nix')
| -rw-r--r-- | home/ebisu/core/default.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/home/ebisu/core/default.nix b/home/ebisu/core/default.nix index ff290cd..597c4ca 100644 --- a/home/ebisu/core/default.nix +++ b/home/ebisu/core/default.nix @@ -1,6 +1,11 @@ -{ config, inputs, ... }: { - imports = [ + config, + inputs, + system ? builtins.currentSystem, + ... +}: +{ + imports = with inputs; [ ./editor ./education ./nix @@ -8,7 +13,8 @@ ./system ./utility ./language.nix - inputs.tailray.homeManagerModules.default + tailray.homeManagerModules.default + rui.homeManagerModules.${system}.default ]; programs.home-manager.enable = true; |