Find a file
2024-02-16 12:23:46 +01:00
disko adding GLaDOS disko config 2024-02-15 18:37:06 +00:00
home-manager Remove obs from GLaDOS specific and configure it in desktop instead 2024-02-16 12:23:46 +01:00
nixos Or this? 2024-02-16 10:45:49 +01:00
overlays Let's try this instead? 2024-01-19 01:47:09 +01:00
pkgs Add servo 2024-02-14 10:50:19 +01:00
.sops.yaml Put a space there 2024-01-23 13:44:18 +01:00
flake.lock Updating flake lock before trying this iso 2024-02-12 17:20:18 +01:00
flake.nix Enable lanzaboot in GLaDOS in the flake 2024-02-15 22:19:37 +01:00
LICENSE Init 2023-12-30 00:28:46 +01:00
README.md Oops linked to wrong repo 2024-01-24 12:36:38 +01:00

Original source: https://git.lillianviolet.dev/Lillian-Violet/NixOS-Config

NixOS-Config

The configuration of different NixOS hosts using flakes and home-manager. It is assumed you have already installed NixOS and git to your system (note: git is not installed by default with the NixOS image, you can grab it with nix-shell -p git), this configuration does not have image artifacts nor can it create them.

Building and deploying the configuration

The first step is to add your age keyfile to the /nix/var/secrets folder with the name "keys.txt" (if you don't have one, remove the imports from the configuration files; the import can be found under hosts/<hostname>/configuration.nix).

Then run this command within your cloned github repo (I put mine in /etc/nixos):

sudo nixos-rebuild --flake .#<hostname> switch

This should rebuild the OS with all programs and settings defined as in the configuration.

Updating the flake lock

In order to have updated packages you will have to update the flake.lock file, this can be done by running the following command in the repository:

nix flake update

Please note that you should commit and push after you do this. It is therefore advisable to do this not in your deployment directory, but your local dev environment. Not commiting the files will dirty your git history, which can have unintended consequences as nix flakes work via git.

Testing the evaluation

To test if your build succeeds the basic checks and can start building the artifacts, you can run the following command:

nix flake check

Note: this does not build the full configuration, and errors might still happen in deployment, especially for dependencies that rely on external services like webservers to be called. For obvious reasons the test building does not actually pull in all the artifacts, and does not make external calls aside from to the package files (You will need a built nix store, or a connection to the git repository that hosts your packages, like an internet connection to github, to make the test run)

Technical details

Home manager

Home manager is imported as a module within the global configuration, it is therefor not needed to build home-manager packages separately in this configuration. On multi user systems it might be useful to pull the home-manager configurations from separate repos for different users, so you don't have to give your users access to the global configuration.

Sops

The secrets are managed in sops files within the hosts folders, there is only one sops file per host, but this can be changed quite easily. The command to edit the sops file is as follows:

nix-shell -p sops --run "sops ./nixos/hosts/<hostname>/secrets/sops.yaml"

This requires your system to have the keyfile available for sops to use, by default sops looks in the sops/age folder in your user folder for a keys.txt file with the private key. You can change this behaviour by setting the $SOPS_AGE_KEY_FILE environment variable, or setting the $SOPS_AGE_KEY environment variable to the key itself.