diff options
Diffstat (limited to 'modules/parts.nix')
| -rw-r--r-- | modules/parts.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/parts.nix b/modules/parts.nix new file mode 100644 index 0000000..bbfcab4 --- /dev/null +++ b/modules/parts.nix @@ -0,0 +1,13 @@ +{ inputs, ...}: { + + imports = [ inputs.home-manager.flakeModules.home-manager ]; + + config = { + systems = [ + "x86_64-linux" + "x86_64-darwin" + "aarch64-linux" + "aarch64-darwin" + ]; + }; +} |
