1

add a readme

This commit is contained in:
2022-08-09 22:10:37 +02:00
parent 461f43b5f2
commit 0cdcb5f103

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# NixFlake/nixos
This folder contains all the system configurations.
- There is a common configuration used for all systems: ``NixFlake/nixos``
- Every system has its own special configuration: ``NixFlake/nixos/<hostname>``
When creating a NixOS configuration inside the ``NixFlake/flake.nix`` the common configuration is imported.
Because the hostname is propagated to the common configuration, it can import the host-specific config by itself.
# NixFlake/home
This folder contains all the home-manager configurations.
- There is a configuration for each user: ``NixFlake/home/<username>``
- There is a common configuration for all systems of this user: ``NixFlake/home/<username>/<hostname>``
When creating a NixOS configuration inside the ``NixFlake/flake.nix`` the common configuration is imported.
Because the hostname is propagated to the common configuration, it can import the host-specific config by itself.