From 4b0c88736979fe2cb8e98e8e0ae12caf7e876141 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Tue, 25 Apr 2023 20:21:03 +0100 Subject: Add config --- modules/home-manager/default.nix | 7 +++++++ modules/nixos/default.nix | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 modules/home-manager/default.nix create mode 100644 modules/nixos/default.nix (limited to 'modules') diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix new file mode 100644 index 0000000..e41f7d9 --- /dev/null +++ b/modules/home-manager/default.nix @@ -0,0 +1,7 @@ +# 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/nixos/default.nix b/modules/nixos/default.nix new file mode 100644 index 0000000..bec6184 --- /dev/null +++ b/modules/nixos/default.nix @@ -0,0 +1,7 @@ +# 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; +} -- cgit v1.2.3-54-g00ecf