Nix noob trying to build his system
Find a file
2023-08-10 20:22:29 -05:00
profiles Extraneous blank line 2023-08-08 21:24:52 -05:00
system Improved performance on battery power 2023-08-10 20:22:29 -05:00
themes Didn't work 2023-06-21 10:34:45 -05:00
user Vterm keybind and tramp optimizations 2023-08-10 20:22:05 -05:00
flake.lock Updated system 2023-08-10 07:55:54 -05:00
flake.nix Overhauled phoenix nix wrapper script w eye candy 2023-06-23 15:04:17 -05:00
install.org Updated install reference 2023-06-29 11:31:35 -05:00
LICENSE Add LICENSE 2023-04-22 20:48:09 +00:00
README.org Cleaned up repo links 2023-06-29 11:41:57 -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/07f545d6cbfdeadfb492cf828fd6bba96afaf68c/themes/ayu-dark/ayu-dark.png

My 55+ Themes

Stylix (and base16.nix, of course) is amazing, allowing you to theme your entire system with base16-themes.

Using this I have 55+ themes (I add more sometimes) I can switch between on-the-fly. Visit the themes directory for more info and screenshots!

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.