NixOS is the endgame to Distro Hopping
Go to file
2024-05-01 10:21:27 -04:00
.forgejo/workflows feat(servers): test github action 2024-01-11 17:22:35 -05:00
common feat: use local version of nix-fast-build 2024-05-01 10:21:27 -04:00
devices feat: use local version of nix-fast-build 2024-05-01 10:21:27 -04:00
home feat(hypr): swww -> wpaperd 2024-04-21 14:57:38 -04:00
modules feat(mice): solaar -> ratbagd/piper 2024-04-24 17:44:08 -04:00
.gitignore feat(nvim): nil -> nixd 2024-04-22 11:40:48 -04:00
flake.lock feat: use local version of nix-fast-build 2024-05-01 10:21:27 -04:00
flake.nix feat: use local version of nix-fast-build 2024-05-01 10:21:27 -04:00
LICENSE.md chore: add license 2024-01-18 11:01:09 -05:00
README.md refactor: use $FLAKE instead of /home/mainUser... 2024-03-26 13:55:55 -04:00
updateSha.sh feat(bin-cache): nixci -> nix-fast-build 2024-04-22 13:51:31 -04:00

My NixOS configs

Ags

You might find it weird that most of my config is written in TypeScript. That's because all my desktops run AGS for UI. Click on this to see my configuration.

I'm also a victim of Stockholm syndrome at this point and make my scripts in TypeScript because it's the scripting language I am most comfortable with.

About

General

This repo is the complete configuration of machines I own, running NixOS or Nix. I tend to mix Home-Manager and NixOS a lot to make my custom modules by using my global vars system explained here

Flake Location

This git repo will always be located at $FLAKE (config.environment.variables.FLAKE) and symlinked to /etc/nixos to have everything where NixOS tools expect things to be.

ie.

sudo rm -r /etc/nixos

echo "$FLAKE" # /home/matt/.nix

sudo ln -sf /home/matt/.nix /etc/nixos

Flake Outputs

Output Description
nixosConfigurations devices' + ISO's configurations
nixOnDroidConfigurations.default Nix-On-Droid's configuration
formatter I have yet to know if this has any uses but I format with alejandra
devShells.default A dev shell to build an ISO from the live-image nixosConfiguration

Flake Inputs

I prefer using a more descriptive format for my inputs like so:

nixpkgs = {
  type = "github";
  owner = "NixOS";
  repo = "nixpkgs";

  # Branch name
  ref = "nixos-unstable";

  # Pin this input to a specific commit
  rev = "842d9d80cfd4560648c785f8a4e6f3b096790e19";
};

to make it more clear what is what in the flake URI

I also have a long list of inputs with flake = false; because it makes it easier to update non-flake custom packages or overlays to have the latest git. I make sure to end the names of these inputs with src to make it clear what they are.

Secrets

All my secrets are in a private git repo that makes use of sops-nix. I only use secrets stored in JSON and generate .sops.yaml from .sops.nix:

let
  wim = "somekey";
  oksys = "somekey2";
in {
  creation_rules = [
    {
      path_regex = "secrets/[^/]+\\.(yaml|json|env|ini)$";
      key_groups = [
        {
          age = [wim oksys];
        }
      ];
    }
  ];
}

which is then converted to .sops.yaml using remarshal and this shell command:

nix eval --json --file ./.sops.nix | remarshal --if json --of yaml > .sops.yaml

TLDR: I hate YAML