My NixOS configs(backup)
Find a file
2022-07-23 10:52:35 -04:00
_sources nvfetcher: update packages 2022-06-27 15:03:32 -04:00
bgs meta: Update a lot(too lazy for individual commits) 2022-06-09 17:07:43 -04:00
doom.d meta: stop misgendering myself(mostly, still some legacy crap to clean up. 2022-07-14 22:16:21 -04:00
home home: Update git signing key 2022-07-23 10:52:35 -04:00
hosts marvin: Rekey all secrets 2022-07-23 10:46:11 -04:00
metadata hosts: Update metadata 2022-05-17 15:09:11 -04:00
modules meta: Format all .nix files 2022-07-15 22:05:23 -04:00
oldconfig oldconfig: Remove BetterDiscord 2022-07-21 10:59:02 +00:00
overlays meta: format 2022-05-13 22:01:25 -04:00
pkgs pkgs: Update ory-hydra-config 2022-07-22 15:11:04 -04:00
users/thehedgehog meta: Update a lot(too lazy for individual commits) 2022-06-09 17:07:43 -04:00
.editorconfig push for hetzner testing 2022-04-30 11:07:24 -04:00
.gitignore marvin: Update storage 2022-05-10 15:05:44 -04:00
flake.lock flake: Update nixos-mailserver url to be correct 2022-07-18 07:32:31 -04:00
flake.nix flake: Update nixos-mailserver url to be correct 2022-07-18 07:32:31 -04:00
home.nix home: disable fontconfig 2022-07-22 15:10:50 -04:00
nvfetcher.toml nvfetcher: update packages 2022-06-27 15:03:32 -04:00
README.md meta: stop misgendering myself(mostly, still some legacy crap to clean up. 2022-07-14 22:16:21 -04:00
statix.toml misc changes 2022-01-31 12:35:11 -05:00

The Hedgehog's Nix Config

Welcome to my ~

This is my nix config. There are many like it, but this one is mine. It's created with Nix, and I'm really proud of it.

Directory Structure

nix
├── _sources/
│   └── generated.nix
│       └── Autogenerated nix expressions from nvfetcher.toml
├── doom.d/
│   └── My Doom Emacs config
├── home/
│   ├── email.nix
│   │   └── My email config
│   ├── packages.nix
│   │   └── Any non-configured packages I want from nix.
│   ├── programs/
│   │   ├── Personal configurations for many programs in home-manager.
│   │   ├── fish/
│   │   │   ├── My Fish Shell configuration
│   │   │   └── colors.nix
│   │   │       └── The Tokyo Night colorscheme for Fish
│   │   └── neovim/
│   │       ├── My Neovim configuration
│   │       └── lua/
│   │           ├── The Lua configuration for my neovim setup
│   │           └── config/
│   │               └── The actual config files.
│   └── services/
│       └── Home-manager managed services
├── hosts/
│   ├── Configurations per-host
│   ├── zaphod.nix
│   │   └── My laptop's config. I use a Framework laptop.
│   └── bootstrap.nix
│       └── The config for bootstrapping a new machine.
├── pkgs/
│   └── Custom nixpkgs expressions, imported into my flake.nix.
└── users/
    ├── Per-user configurations for nixos
    └── thehedgehog/
        └── My default user config.

Useful Resources I've found

The Unofficial NixOS Wiki

https://nixos.wiki

Probably one of the most helpful sites around, as it contains a wealth of information on many things nix-related, as well as info on the ecosystem itself.