Nix noob trying to build his system
Find a file
2023-06-20 22:32:28 -05:00
profiles/personal Split system config into tons of modules! 2023-06-20 22:08:25 -05:00
system Updated system and user dir readme's 2023-06-20 22:30:34 -05:00
themes Finished creating all theme readme's!! 2023-06-07 19:16:23 -05:00
user Updated system and user dir readme's 2023-06-20 22:30:34 -05:00
flake.lock Added domain blocklist 2023-06-17 22:48:58 -05:00
flake.nix I think it's nicer to have inputs block on bottom 2023-06-20 22:32:28 -05:00
install.org Improved documentation for my config 2023-06-11 10:26:47 -05:00
LICENSE Add LICENSE 2023-04-22 20:48:09 +00:00
README.org Updated readme with profiles change 2023-06-20 22:03:43 -05:00

NixOS Config

Main Repo Link (GitLab)

Mirror Repo Link (GitHub)

What is this repository?

These are my dotfiles (configuration files) for my NixOS setup(s).

Here is my main setup: /byteio/nixos-config/media/commit/37746eafe935909f2ad10d9c577a32b72bd0ce31/themes/ayu-dark/ayu-dark.png

Install

I wrote some reinstall notes for myself here (install.org).

Modules

Separate Nix files can be imported as modules using an import block:

imports = [ import1.nix
            import2.nix
            ...
          ];

This conveniently allows configurations to be (*cough cough) modular (ba dum, tssss).

I have my modules separated into two groups:

More detailed information on these specific modules are in the system directory and user directory respectively.

Profiles

I separate my configurations into profiles (essentially system templates), i.e:

  • Personal - What I would run on a personal laptop/desktop
  • Work - What I would run on a work laptop/desktop (if they let me bring my own OS :P)
  • Homelab - What I would run on a server or homelab

My profile can be conveniently selected in my flake.nix by setting the profile variable.

More detailed information on these profiles is in the profiles directory.