aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..52714f9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,37 @@
+```sh
+nixos-rebuild build-vm --flake .#collinux
+```
+
+
+A host config has many parts
+- user environment config (home-manager)
+- system config
+- hardware config (facter)
+ - disks config (disko or manual)
+
+## Dream hosts/config.nix
+```nix
+collinux = {
+ user = {
+ fullName = "";
+ name = "";
+ email = "";
+ password = "";
+ };
+
+ theme = "";
+
+ desktop = {
+ programs = {};
+ };
+
+ terminal = {
+ programs = {};
+ };
+
+ boot = {};
+
+ extraNixosModules = [];
+ extraHomeModules = [];
+};
+```