2026-02-18 08:24:25 -08:00
|
|
|
{
|
Polish ringtail NixOS config and add documentation (#208)
## Summary
- Fix Super+Return keybinding to launch wezterm in sway
- Set fish as default login shell
- Remove `initialPassword` (real password already set)
- Add 1Password CLI + GUI, chezmoi, and dev tool packages (neovim, eza, fd, fzf, zoxide, starship, atuin, bat, ripgrep)
- Add ringtail reference card, update host inventory and reference index
- Changelog fragment
## Post-merge deployment
- `mise run provision-ringtail` to rebuild NixOS
- On ringtail: launch 1Password GUI, enable CLI integration (Settings > Developer > CLI integration)
- Chezmoi needs `.chezmoiignore` updates in the dotfiles repo (separate task)
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/208
2026-02-18 17:53:47 -08:00
|
|
|
description = "NixOS configuration for ringtail (service host & gaming PC)";
|
2026-02-18 08:24:25 -08:00
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
2026-04-01 21:37:57 -07:00
|
|
|
|
|
|
|
|
# Pinned nixpkgs for versioned services (forgejo-runner, snowflake, k3s).
|
|
|
|
|
# Update this deliberately during service reviews, not via `nix flake update`.
|
|
|
|
|
# Current versions: forgejo-runner 12.7.2, snowflake 2.11.0, k3s 1.34.5+k3s1
|
|
|
|
|
nixpkgs-services.url = "github:NixOS/nixpkgs/1073dad219cb244572b74da2b20c7fe39cb3fa9e";
|
|
|
|
|
|
2026-02-18 08:24:25 -08:00
|
|
|
disko = {
|
|
|
|
|
url = "github:nix-community/disko";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
Polish ringtail NixOS config and add documentation (#208)
## Summary
- Fix Super+Return keybinding to launch wezterm in sway
- Set fish as default login shell
- Remove `initialPassword` (real password already set)
- Add 1Password CLI + GUI, chezmoi, and dev tool packages (neovim, eza, fd, fzf, zoxide, starship, atuin, bat, ripgrep)
- Add ringtail reference card, update host inventory and reference index
- Changelog fragment
## Post-merge deployment
- `mise run provision-ringtail` to rebuild NixOS
- On ringtail: launch 1Password GUI, enable CLI integration (Settings > Developer > CLI integration)
- Chezmoi needs `.chezmoiignore` updates in the dotfiles repo (separate task)
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/208
2026-02-18 17:53:47 -08:00
|
|
|
home-manager = {
|
|
|
|
|
url = "github:nix-community/home-manager/release-25.11";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
2026-02-18 08:24:25 -08:00
|
|
|
};
|
|
|
|
|
|
2026-04-01 21:37:57 -07:00
|
|
|
outputs = { nixpkgs, nixpkgs-services, disko, home-manager, ... }: {
|
2026-02-18 08:24:25 -08:00
|
|
|
nixosConfigurations.ringtail = nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
modules = [
|
|
|
|
|
disko.nixosModules.disko
|
Polish ringtail NixOS config and add documentation (#208)
## Summary
- Fix Super+Return keybinding to launch wezterm in sway
- Set fish as default login shell
- Remove `initialPassword` (real password already set)
- Add 1Password CLI + GUI, chezmoi, and dev tool packages (neovim, eza, fd, fzf, zoxide, starship, atuin, bat, ripgrep)
- Add ringtail reference card, update host inventory and reference index
- Changelog fragment
## Post-merge deployment
- `mise run provision-ringtail` to rebuild NixOS
- On ringtail: launch 1Password GUI, enable CLI integration (Settings > Developer > CLI integration)
- Chezmoi needs `.chezmoiignore` updates in the dotfiles repo (separate task)
Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/208
2026-02-18 17:53:47 -08:00
|
|
|
home-manager.nixosModules.home-manager
|
2026-02-18 08:24:25 -08:00
|
|
|
./disk-config.nix
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./configuration.nix
|
2026-04-02 15:48:36 -07:00
|
|
|
./gaming.nix
|
2026-04-01 21:37:57 -07:00
|
|
|
# Pin versioned services to nixpkgs-services instead of the rolling nixpkgs.
|
|
|
|
|
# This prevents `nix flake update nixpkgs` from silently upgrading them.
|
|
|
|
|
# Bump nixpkgs-services explicitly during service reviews.
|
|
|
|
|
({ ... }: {
|
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
|
(final: prev: let svcPkgs = nixpkgs-services.legacyPackages.x86_64-linux; in {
|
|
|
|
|
forgejo-runner = svcPkgs.forgejo-runner;
|
|
|
|
|
snowflake = svcPkgs.snowflake;
|
|
|
|
|
k3s = svcPkgs.k3s;
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
})
|
2026-02-18 08:24:25 -08:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|