Go to file
2023-10-17 19:49:41 +08:00
.github ci: bump stefanzweifel/git-auto-commit-action from 4 to 5 (#5) 2023-10-14 07:32:17 +00:00
docs docs/site: add overlays/ for "Project structure" 2023-09-25 18:38:52 +08:00
hosts hosts/plover: update miscellaneous parts of the services 2023-10-17 18:32:23 +08:00
lib flake.nix: move the imported modules into the shared config 2023-10-16 23:01:38 +08:00
modules services/vouch-proxy: escape service names for systemd 2023-10-17 18:33:02 +08:00
overlays overlays/firefox-foodogsquared: init 2023-10-17 13:25:07 +08:00
pkgs blender-machin3tools: init at 1.5.0 2023-09-26 17:45:18 +08:00
secrets secrets: replace foodogsquared's GPG key 2023-07-24 17:44:15 +08:00
shells config: migrate from Terraform CLI to OpenTofu CLI 2023-10-13 14:24:10 +08:00
templates templates/local-ruby-nix: init 2023-08-03 15:44:11 +08:00
users users/foo-dogsquared: add kanidm client config 2023-10-17 19:49:41 +08:00
.editorconfig editorconfig: add formatting config for TOML files 2023-08-01 17:30:50 +08:00
.envrc config: add dotenv for production 2023-06-27 15:24:43 +08:00
.gitattributes git: remove linguist attributes 2023-06-22 18:07:44 +08:00
.gitignore config: add dotenv for production 2023-06-27 15:24:43 +08:00
.sops.yaml users/foo-dogsquared: create secrets 2023-07-24 17:48:15 +08:00
default.nix default.nix: update with custom overlays 2023-09-26 22:34:14 +08:00
flake.lock flake.lock: update inputs 2023-10-13 01:02:14 +00:00
flake.nix flake.nix: move the imported modules into the shared config 2023-10-16 23:01:38 +08:00
images.toml config: make platforms as a list for users and images 2023-07-30 07:11:53 +08:00
LICENSE LICENSE: update author email 2023-07-20 22:12:02 +08:00
Makefile Makefile: add deploy step 2023-09-28 18:29:51 +08:00
README.adoc docs: add FlakeHub reference to project README 2023-10-10 12:37:00 +08:00
shell.nix config: migrate from Terraform CLI to OpenTofu CLI 2023-10-13 14:24:10 +08:00
treefmt.toml config: add excluded files to be formatted 2023-07-25 12:06:15 +08:00
users.toml config: make platforms as a list for users and images 2023-07-30 07:11:53 +08:00

This is my NixOS config as a Nix flake eventually containing my (almost) complete setup from a desktop, to a server, to a personalized installer, almost everything. Who knows it might contain another server just for the infrastructure for my custom non-NixOS distro just to flex how flexible NixOS can be. [1]

Anyways, this project also has a dedicated website at https://foo-dogsquared.github.io/nixos-config which I recommend to take a gander on how this project structures its configuration (and much of the information is not covered in this README anyways). If you want the local documentation and has angst against online documentation, you can view the source code of the book at ./docs/.

Getting started

This is an overencumbered set of NixOS configurations for different systems. For this section though, well assume youre only interested in installing the desktop configuration.

To start, youll have to download a NixOS installer image. While you can download the latest revisions from the official website, you can get my personalized installer from the releases page of this project. Next, boot into the installer image. Then as root, install the desktop with the following commands.

bash $(nix build --no-link --print-out-paths github:foo-dogsquared/nixos-config#nixosConfigurations.ni.config.system.build.diskoScript)
nixos-install --flake github:foo-dogsquared/nixos-config#ni

The above command will automate everything for you including the partitioning steps.

Voila! You should have my desktop configuration installed.

However, it should also be barely usable since there are a couple of missing components that are needed such as the private keys for the desktop which is required for certain tasks such as backup task with Borg among other things. There are also some additional prerequisites such as partitioning which is already handled with disko.

Using the flake

If you want to use the flake as part of the flake inputs, you can simply include it in flake.nix.

{
    inputs.foodogsquared-flake.url = "github:foo-dogsquared/nixos-config";
}

For a better experience, I recommend using FlakeHub (with available instructions in the linked page). The FlakeHub flake follows a rolling release model so all of the releases are under 0.x.

TODO

In order of priority:

  • ✓ Create custom modules.

  • ✓ Create a themes system similar to this NixOS config.

  • ✓ Create a good workflow for creating ISOs.

  • ✓ Create development shells.

  • ✓ Manage secrets with agenix.

  • ❏ Create a good workflow for tests.

  • ✓ Automate backups with NixOS config.

  • ✓ Create custom packages and export it to flakes. (Maybe consider making it to upstream)

  • ✓ Create cluser-wide configs.

  • ✓ Create host-wide configs.

  • ✓ Create user-specific configs with home-manager.

  • Steal Get some ideas from this overengineered template.

  • ✓ Make use of other established utilities such as digga, flake-utils-plus, and home-manager once Im familiar to create my own Nix programs.

Out of scope:

  • Set most program configurations with Nix. This is especially applicable to programs I always use such as my text editor configs.

    • The reason: managing them can be chaotic when applied with Nix. The potential for it is pretty nice especially when seen with similar implementations such as Guix home environment. However, I dont want to rebuild it every time I change it.

  • Migration of my dotfiles. I still use it on other non-NixOS systems.

  • To be a configuration framework. This is my personal configuration which means experimentation will always be here. Sudden changes can happen at any point.

This project is licensed under MIT license. I just chose it to make it easier to upstream parts of this project to nixpkgs and to make it easier to copy it without much problems (just dont forget to add attribution as indicated from the license). Please see ./LICENSE for the full text.


1. This is how Garuda Linux is set up, btw.