diff options
author | NotAShelf <itsashelf@gmail.com> | 2023-04-25 23:10:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 21:10:57 +0100 |
commit | 243a9339f041f62c1b5d8c05b415b126349c95b5 (patch) | |
tree | 315d2fafb2ed592e13ebd299f31fcd5d74e2127e /modules/public | |
parent | 4b0c88736979fe2cb8e98e8e0ae12caf7e876141 (diff) |
reflopactor (#1)
Diffstat (limited to 'modules/public')
-rw-r--r-- | modules/public/home-manager/default.nix | 6 | ||||
-rw-r--r-- | modules/public/nixos/default.nix | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/modules/public/home-manager/default.nix b/modules/public/home-manager/default.nix new file mode 100644 index 0000000..45aae31 --- /dev/null +++ b/modules/public/home-manager/default.nix @@ -0,0 +1,6 @@ +# Add your reusable home-manager modules to this directory, on their own file (https://nixos.wiki/wiki/Module). +# These should be stuff you would like to share with others, not your personal configurations. +{ + # List your module files here + # my-module = import ./my-module.nix; +} diff --git a/modules/public/nixos/default.nix b/modules/public/nixos/default.nix new file mode 100644 index 0000000..8605069 --- /dev/null +++ b/modules/public/nixos/default.nix @@ -0,0 +1,6 @@ +# Add your reusable NixOS modules to this directory, on their own file (https://nixos.wiki/wiki/Module). +# These should be stuff you would like to share with others, not your personal configurations. +{ + # List your module files here + # my-module = import ./my-module.nix; +} |