NixOS is the endgame to Distro Hopping
Go to file
matt1432 686d459f9c
All checks were successful
Discord / discord commits (push) Has been skipped
fix(gsr): change path to mainMonitor
2024-06-27 01:03:50 -04:00
.forgejo/workflows feat(servers): test github action 2024-01-11 17:22:35 -05:00
common refactor: start making flake exposed modules with desktop 2024-06-27 00:56:27 -04:00
devices fix(gsr): change path to mainMonitor 2024-06-27 01:03:50 -04:00
home/firefox refactor: start making flake exposed modules with desktop 2024-06-27 00:56:27 -04:00
modules refactor: start making flake exposed modules with desktop 2024-06-27 00:56:27 -04:00
pkgs docs: fix typo 2024-06-26 14:48:48 -04:00
.gitignore chore: organize gitignore 2024-05-20 11:49:21 -04:00
ci.nix refactor: reduce amount of IFDs 2024-06-10 22:57:20 -04:00
flake.in.nix refactor: start making flake exposed modules with desktop 2024-06-27 00:56:27 -04:00
flake.lock chore: update flake.lock 2024-06-26 10:42:46 -04:00
flake.nix refactor: start making flake exposed modules with desktop 2024-06-27 00:56:27 -04:00
inputs.nix feat(hypr): add stuff to make development easier 2024-06-24 11:46:08 -04:00
lib.nix refactor: remove precise inputs from lib.nix 2024-06-24 11:38:30 -04:00
LICENSE.md chore: add license 2024-01-18 11:01:09 -05:00
README.md refactor: move mpv scripts and firefox addons to scopes in lgcyPkgs 2024-06-26 14:47:14 -04:00
updateSha.sh chore: fix update script and update flake.lock 2024-06-11 16:42:47 -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
packages Some custom packages not available in nixpkgs or modified from it
legacyPackages Some custom package scopes not available in nixpkgs or modified from it
formatter I format nix code with alejandra
devShells.default A dev shell to build an ISO from the live-image nixosConfiguration
devShells.ags A dev shell to have a NodeJS env when I enter my AGS's config directory

Flake Inputs

To allow use of the full nix language for my inputs, I use genflake. Therefore, the flake I edit is located at ./flake.in.nix.

I also 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

Secrets

All my secrets are in a private git repo that makes use of sops-nix. I 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