diff options
author | Linnnus <[email protected]> | 2023-10-03 17:23:53 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-03 17:23:53 +0200 |
commit | fdf02bf9dfb3721ba8b5e07a1e509d4d92833d7a (patch) | |
tree | 6aa2c12a70879df2891e9d8cbeba318d9d2449e3 /modules | |
parent | b2d3fed4ffcf1ef3281b4adb778e3e06f63d59c9 (diff) |
Seperate modules into general/personal
Diffstat (limited to 'modules')
-rw-r--r-- | modules/darwin/default.nix | 3 | ||||
-rw-r--r-- | modules/nixos/default.nix | 20 |
2 files changed, 12 insertions, 11 deletions
diff --git a/modules/darwin/default.nix b/modules/darwin/default.nix index 832940f..48f0511 100644 --- a/modules/darwin/default.nix +++ b/modules/darwin/default.nix @@ -1,3 +1,4 @@ { - still-awake = import ./still-awake; + general.still-awake = import ./still-awake; + personal = {}; } diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index daea05f..3fcc34c 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -1,12 +1,12 @@ { - ## Reusable services. - - on-demand-minecraft = import ./on-demand-minecraft; - duksebot = import ./duksebot; - - ## Other miscellaneous configuration bits. These may be useful to other you. - - cloudflare-proxy = import ./cloudflare-proxy; - - disable-screen = import ./disable-screen; + # These components are + general = { + on-demand-minecraft = import ./on-demand-minecraft; + cloudflare-proxy = import ./cloudflare-proxy; + disable-screen = import ./disable-screen; + }; + + personal = { + duksebot = import ./duksebot; + }; } |