Laptop, desktop, and home lab flake featuring Hyprland, Sway, declarative containers, a reverse proxy, and more.
Find a file
Aly Raffauf 8721814635
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
rofi: improve theme colors
2024-08-15 18:58:16 -04:00
.github/workflows github: don't run default-build if there are no changes 2024-08-04 11:28:13 -04:00
_img README.md: update screenshot 2024-08-11 11:03:15 -04:00
baseModules base: drop unnecessary logind extraConfig 2024-08-02 20:02:38 -04:00
flake clean-install: prompt for host 2024-07-17 11:07:29 -04:00
homeManagerModules rofi: improve theme colors 2024-08-15 18:58:16 -04:00
homes theme: borderRadius -> borders.radius 2024-08-15 18:31:07 -04:00
hosts migrate to stylix (#90) 2024-08-15 15:55:39 -04:00
nixosModules Revert "desktop: swaylock -> gtklock (#89)" 2024-08-12 09:04:16 -04:00
secrets aly: switch to bitwarden (#72) 2024-08-02 07:50:06 -04:00
userModules home: bash -> shell + zsh + oh-my-posh 2024-08-04 14:10:39 -04:00
.gitignore add .gitignore 2024-04-02 17:48:27 -04:00
.gitlab-ci.yml code cleanup (#47) 2024-07-18 21:05:35 -04:00
flake.lock flake: stylix.inputs.nixpkgs follows nixpkgs 2024-08-15 17:12:48 -04:00
flake.nix flake: stylix.inputs.nixpkgs follows nixpkgs 2024-08-15 17:12:48 -04:00
LICENSE.md hosts: add READMEs (#50) 2024-07-20 19:41:51 -04:00
README.md waybar: move to bottom and rebuild stylesheet (#82) 2024-08-10 18:11:11 -04:00
update_fetchgit.sh fetchgit script: simplify 2024-07-25 12:15:14 -04:00

nixos

My comprehensive NixOS flake for managing my laptop, desktop, and home lab environments.

Features

  • Hyprland: Dynamic tiling Wayland compositor and window manager.
  • Theme Engine: Recolor your whole desktop with simple theme options.
  • Home Lab Services: Media, file sharing, and more.
  • Reverse Proxy: Efficient traffic routing for my home lab services.
  • Modular Configuration: Reasonably adaptable for different hardware and use cases.

Inputs

This flake takes a variety of inputs, first and foremost my other flakes:

  • nixhw: opinionated set of generic (AMD, Intel, Laptop, SSD) and specific (Framework 13, Yoga 9i, Thinkpad T440p) hardware configuration modules for NixOS.
  • raffauflabs: everything (containers, services, nginx, etc) that makes my home lab a home lab.

As well as upstream third-party projects that I use for various tasks:

  • agenix: secrets storage and orchestration.
  • disko: declarative partitions and disk configuration.
  • home-manager: declarative dotfile and user package management.
  • hyprland: great dynamic tiling wayland compositor.
  • iio-hyprland: autorotate daemon for Hyprland.
  • nur: extra packages from the nix user repository.

Outputs

  • homeManagerModules.default: app modules + everything you need for a competent Hyprland desktop (and a few others).
  • nixosModules.base: opinionated basic system configuration.
  • nixosModules.nixos: opinionated desktop, app, and service modules.
  • nixosModules.users: basic user configuration.

In addition, this flake outputs NixOS configuration and home-manager configurations for all of my hosts and users, respectively.

Deploying to NixOS

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

If you want to install NixOS from this flake, run the following commands, ideally from a NixOS live environment, providing the hostname associated with a NixOS configuration specified in flake.nix when prompted.

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