Laptop, desktop, and home lab flake featuring Hyprland, Sway, declarative containers, a reverse proxy, and more.
Find a file
2024-07-07 23:06:17 -04:00
.github/workflows github: update actions 2024-07-05 21:58:22 -04:00
_img README: update screenshot 2024-07-03 16:27:34 -04:00
baseModules move hyprland overlays to nixosModules/desktop/hyprland 2024-07-07 19:41:07 -04:00
homeManagerModules declare GDK_SCALE in host cfg 2024-07-07 22:23:19 -04:00
homes flake: add homeManagerModules for each user 2024-07-07 21:07:35 -04:00
hosts declare GDK_SCALE in host cfg 2024-07-07 22:23:19 -04:00
nixosModules nixosmodules: merge lightdm and cinnamon modules 2024-07-07 20:23:29 -04:00
secrets mauville: fetch nix-cache secrets with agenix 2024-06-30 23:28:24 -04:00
userModules flake: add homeManagerModules for each user 2024-07-07 21:07:35 -04:00
.gitignore add .gitignore 2024-04-02 17:48:27 -04:00
flake.lock flake.lock: Update 2024-07-07 06:15:50 +00:00
flake.nix flake: add helpers 2024-07-07 23:06:17 -04:00
LICENSE.md Create LICENSE.md 2024-03-09 11:58:37 -05:00
README.md move raffauflabsModules to separate git repo (#12) 2024-07-05 20:58:05 -04:00

nixcfg

NixOS flake for all mine + my husband's hosts, including modules for Hyprland, Sway, GNOME, and a variety of home lab services running on a mix of nix-native and OCI containers. Built with agenix for managing secrets, disko for automatically partioning drives, and home-manager for managing dotfiles and home configuration.

Rice

Deploying to NixOS

🔴 Do not deploy this flake unmodified to your machine. It won't work. This is my own NixOS and home-manager flake for my personal devices. Each hardware configuration is host-specific. If you fork this repository, add a host configuration for your own hardware. Secrets are encrypted with agenix and will not be available without the private decryption keys.

Enabling Flakes

While widely used and considered stable, flakes are still considered experimental. To enable Flakes, add the following lines to your configuration.nix and rebuild.

nix.settings.experimental-features = [ "nix-command" "flakes" ];

Alternatively, pass --experimental-features "nix-command flakes" to nix to temporarily use flakes.

Building Flake

In order to deploy this Flake on your host, run the following command:

sudo nixos-rebuild boot --flake github:alyraffauf/nixcfg#$HOSTNAME

Substitute $HOSTNAME for whichever hostname you have chosen. Reboot to apply the flake's configuration for the chosen host.

Installing from Live USB

🔴 This will erase your computer's disk as specified by the host configuration, installing a fresh copy of NixOS. Backup first!

If you want to install NixOS from this flake, run the following commands, ideally from a NixOS live environment, substituting $HOSTNAME with a NixOS configuration specified in flake.nix.

sudo nix --experimental-features "nix-command flakes" run github:alyraffauf/nixcfg -- $HOSTNAME