My NixOS configs(backup)
Find a file
2022-05-10 15:05:44 -04:00
_sources Many fixes and formatting 2022-04-20 13:14:00 -04:00
bgs add more backgrounds 2022-04-01 09:21:29 -04:00
doom.d doom: Disable unused modes 2022-03-16 06:35:37 -04:00
home Revert "update git keys" 2022-05-09 09:37:57 -04:00
hosts marvin: Update storage 2022-05-10 15:05:44 -04:00
metadata update ssh keys 2022-05-05 12:26:45 -04:00
modules update ssh keys 2022-05-05 12:26:45 -04:00
oldconfig push for hetzner testing 2022-04-30 11:07:24 -04:00
overlays push for hetzner testing 2022-04-30 11:07:24 -04:00
pkgs Many fixes and formatting 2022-04-20 13:14:00 -04:00
users/mrhedgehog Many fixes and formatting 2022-04-20 13:14:00 -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 hm: make wayland work again 2022-05-08 15:57:26 -04:00
flake.nix hm: make wayland work again 2022-05-08 15:57:26 -04:00
home.nix hm: make wayland work again 2022-05-08 15:57:26 -04:00
nvfetcher.toml nvfetcher: add more sources 2022-03-24 18:04:19 -04:00
README.md feat(meta): Rewrite readme 2022-02-19 19:27:59 -05:00
statix.toml misc changes 2022-01-31 12:35:11 -05:00

Mr 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
    └── mrhedgehog/
        └── 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.