Compare commits
40
Commits
f45d83b1d9
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6519ae6625
|
||
|
|
2229f79617
|
||
|
|
44d832fdda
|
||
|
|
5d1791914e
|
||
|
|
5fe5c81916
|
||
|
|
fbec41ba10
|
||
|
|
ebd306ee98
|
||
|
|
d240aac403
|
||
|
|
258119c5c8
|
||
|
|
1d04dc984f
|
||
|
|
a2b5cfaed3
|
||
|
|
82dfa98c07
|
||
|
|
1dcc27f378
|
||
|
|
e97bfb6262
|
||
|
|
bf5778476e
|
||
|
|
f2b1bedcf0
|
||
|
|
5f6ca72f6c
|
||
|
|
ea39c929ae
|
||
|
|
06e1c4390c
|
||
|
|
01ec6d15db
|
||
|
|
e2267e8978
|
||
|
|
044d2742ed
|
||
|
|
3f92349857
|
||
|
|
39eb99e021
|
||
|
|
c4476bf1b7
|
||
|
|
b4a04567e0
|
||
|
|
f493275ea0
|
||
|
|
8e118c5a3f
|
||
|
|
76c28f65ff
|
||
|
|
daf7eb8d75
|
||
|
|
08c2eb8bfe
|
||
|
|
f3b6087440
|
||
|
|
672c269841
|
||
|
|
92df1c9e8c
|
||
|
|
43780e9384
|
||
|
|
736fb9c29b
|
||
|
|
254d868c34
|
||
|
|
4da28b1cd8
|
||
|
|
29e66e1f2e
|
||
|
|
4a3a7e8e19
|
@@ -0,0 +1,128 @@
|
||||
# AGENTS.md
|
||||
|
||||
## Common Commands
|
||||
|
||||
```bash
|
||||
# Enter the dev shell (provides helper utilities)
|
||||
nix develop
|
||||
|
||||
# Preferred shorthand (nh must be enabled in config)
|
||||
nh os switch # rebuild and switch
|
||||
nh os boot # new boot entry without switching
|
||||
|
||||
# Direct nixos-rebuild (fallback)
|
||||
sudo nixos-rebuild switch --flake .#nixinator
|
||||
sudo nixos-rebuild switch --flake .#nixtop
|
||||
sudo nixos-rebuild switch --flake .#servenix
|
||||
sudo nixos-rebuild switch --flake .#thinknix
|
||||
sudo darwin-rebuild switch --flake .#darwinix
|
||||
|
||||
# Validate flake without building
|
||||
nix flake check
|
||||
|
||||
# Dev shell helpers (run inside `nix develop`)
|
||||
list-system-packages # show installed system packages
|
||||
list-user-packages # show installed user packages
|
||||
store-optimise # nix store --optimise
|
||||
store-verify # nix store --verify --repair
|
||||
```
|
||||
|
||||
## MCP Tools
|
||||
|
||||
The **nixos** MCP server is available and should be used for any Nix-related lookups instead of `nix search` or manual web searches. It queries live APIs (search.nixos.org, NixHub, FlakeHub) and is more current than training data.
|
||||
|
||||
```
|
||||
# Common intents
|
||||
nix {"action":"info","query":"<pkg>","channel":"unstable"} # package info
|
||||
nix {"action":"search","query":"<term>","type":"options"} # NixOS options
|
||||
nix {"action":"search","source":"home-manager","query":"<term>"} # HM options
|
||||
nix {"action":"cache","query":"<pkg>"} # binary cache status
|
||||
nix_versions {"package":"<attr>","version":"<ver>"} # commit that shipped a version
|
||||
```
|
||||
|
||||
## Architecture
|
||||
|
||||
This is a multi-host NixOS/nix-darwin flake. Home-manager runs **as a NixOS module** — not standalone. A single `nixos-rebuild switch` rebuilds system and user config together. The HM config can access the system config via the `nixosConfig` special arg.
|
||||
|
||||
### Hosts
|
||||
|
||||
| Host | Type | Notes |
|
||||
|------|------|-------|
|
||||
| `nixinator` | Desktop (x86_64) | Primary machine; disko, lanzaboote, impermanence |
|
||||
| `nixtop` | Laptop (x86_64) | Intel GPU, NetworkManager |
|
||||
| `servenix` | Server (x86_64) | Headless; runs OCI container services |
|
||||
| `thinknix` | Headless (x86_64) | Generic headless config |
|
||||
| `darwinix` | macOS (aarch64) | Darwin-specific configuration |
|
||||
|
||||
### Config Layering (resolved in this order)
|
||||
|
||||
1. **Global defaults** — `system/default.nix` / `home/christoph/default.nix`
|
||||
2. **Host overrides** — `system/<hostname>/default.nix` / `home/christoph/<hostname>/default.nix`
|
||||
3. **Hardware** — `system/<hostname>/hardware-configuration.nix` (auto-generated, **do not hand-edit**)
|
||||
|
||||
The builder (`lib/nixos.nix`: `mkNixosConfigWithHomeManagerModule`) wires these together.
|
||||
|
||||
### Special Args
|
||||
|
||||
Injected into **all system and HM modules**:
|
||||
`inputs` `system` `hostname` `mylib` `username` `publicKeys` `headless`
|
||||
|
||||
Use `headless` (boolean) to gate anything graphical. Use `mylib.<fn>` instead of reimplementing helpers.
|
||||
|
||||
### Module System
|
||||
|
||||
Two parallel hierarchies, identical pattern:
|
||||
|
||||
| Scope | Path | Option prefix |
|
||||
|-------|------|---------------|
|
||||
| System | `system/systemmodules/<name>/` | `systemmodules.<name>.*` |
|
||||
| Home-manager | `home/homemodules/<name>/` | `homemodules.<name>.*` |
|
||||
|
||||
**System modules** — `system/systemmodules/<name>/`
|
||||
- `options.nix` — declares `systemmodules.<name>.*` options
|
||||
- `default.nix` — imports `./options.nix`, implements `lib.mkIf <name>.enable { ... }`
|
||||
|
||||
**Home-manager modules** — `home/homemodules/<name>/`
|
||||
- `options.nix` — declares `homemodules.<name>.*` options
|
||||
- `default.nix` — same pattern under `homemodules.*`
|
||||
|
||||
When adding a new module, copy from `0_template/` in either hierarchy. Modules under `1_deprecated/` are kept for reference only — not imported anywhere.
|
||||
|
||||
HM modules are placed in `home-manager.sharedModules` (not `users.<user>.imports`) — this enables proper nixd completions.
|
||||
|
||||
### Custom Library (`lib/`)
|
||||
|
||||
Always available as `mylib`. Key files:
|
||||
- `nixos.nix` — host config builders, `mkNixosConfigWithHomeManagerModule`, `mkDarwinConfigWithHomeManagerModule`
|
||||
- `modules.nix` — `mkBoolOption`, `mkElse`, `attrName`, `attrValue`, `contains`
|
||||
- `networking.nix` — `mkSystemdNetwork`, `mkStaticSystemdNetwork`
|
||||
- `generators.nix` — `toLuaObject`, `toLuaKeymap` (used by Neovim module)
|
||||
- `containers.nix` — OCI container helpers for services
|
||||
- `color.nix` — theming
|
||||
|
||||
Always use `mylib.<fn>` (available as a special arg) rather than reimplementing these utilities.
|
||||
|
||||
### Services
|
||||
|
||||
Server services are OCI containers (podman/docker) defined in `system/services/`. Each file defines one or more containers. These are only enabled on `servenix`. Use the template at `system/services/0_TEMPLATE.nix`.
|
||||
|
||||
### Secrets
|
||||
|
||||
Managed via **sops-nix**. Age keys stored in `flake.nix` under `publicKeys.christoph`. Encrypted `.yaml`/`.json` files live alongside the module that uses them, referenced as `sops.secrets.<name>`.
|
||||
|
||||
### Overlays and Custom Derivations
|
||||
|
||||
- `overlays/default.nix` — package overrides (e.g., patched JetBrains CLion version)
|
||||
- `derivations/default.nix` — custom packages: `monolisa`, `msty`, `unityhub`, `tidal-dl-ng`, `tiddl`
|
||||
- `derivations/1_deprecated/` — kept for reference, not imported
|
||||
|
||||
### Sub-projects
|
||||
|
||||
`config/flake.nix` is a separate, reusable development-project template — **not part of the main NixOS flake**. It uses `flake-utils` for multi-system shells.
|
||||
|
||||
## Constraints
|
||||
|
||||
- No CI, no tests, no linting — this is a configuration repo
|
||||
- `nix flake check` is the only validation available
|
||||
- `documentation.enable = false` by default (slow); toggle it if you need man pages
|
||||
- Hardware config files are auto-generated — never edit them by hand
|
||||
@@ -356,7 +356,7 @@ background_alpha=0.8
|
||||
################ INTERACTION #################
|
||||
|
||||
### Change toggle keybinds for the hud & logging
|
||||
# toggle_hud=Shift_R+F12
|
||||
toggle_hud=Shift_R+F12
|
||||
# toggle_hud_position=Shift_R+F11
|
||||
# toggle_preset=Shift_R+F10
|
||||
# toggle_fps_limit=Shift_L+F1
|
||||
|
||||
@@ -4,17 +4,19 @@
|
||||
pkgs,
|
||||
}: let
|
||||
pythonPkgs = pkgs.python314Packages.overrideScope (self: super: {
|
||||
typer = super.typer.overridePythonAttrs (old: {
|
||||
version = "0.20.1";
|
||||
src = pkgs.fetchPypi {
|
||||
pname = "typer";
|
||||
version = "0.20.0";
|
||||
sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc=";
|
||||
};
|
||||
propagatedBuildInputs = with pythonPkgs; [
|
||||
typing-extensions
|
||||
];
|
||||
});
|
||||
# NOTE: Typer override apparently no longer required on 2026-08-31
|
||||
#
|
||||
# typer = super.typer.overridePythonAttrs (old: {
|
||||
# version = "0.20.1";
|
||||
# src = pkgs.fetchPypi {
|
||||
# pname = "typer";
|
||||
# version = "0.20.0";
|
||||
# sha256 = "sha256-Gq9klAMXk+SHb7C6z6apErVRz0PB5jyADfixqGZyDDc=";
|
||||
# };
|
||||
# propagatedBuildInputs = with pythonPkgs; [
|
||||
# typing-extensions
|
||||
# ];
|
||||
# });
|
||||
|
||||
aiofiles = super.aiofiles.overridePythonAttrs (old: {
|
||||
version = "25.1.0";
|
||||
|
||||
Generated
+325
-237
File diff suppressed because it is too large
Load Diff
@@ -36,7 +36,7 @@
|
||||
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# Secure boot
|
||||
lanzaboote.url = "github:nix-community/lanzaboote/v0.4.3";
|
||||
lanzaboote.url = "github:nix-community/lanzaboote/v1.1.0";
|
||||
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# Nix User Repository (e.g. Firefox addons)
|
||||
@@ -97,6 +97,13 @@
|
||||
# musnix.url = "github:musnix/musnix";
|
||||
# musnix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
claude-desktop.url = "github:aaddrick/claude-desktop-debian";
|
||||
claude-desktop.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# Unofficial
|
||||
codex-desktop-linux.url = "github:ilysenko/codex-desktop-linux";
|
||||
codex-desktop-linux.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
stylix.url = "github:nix-community/stylix";
|
||||
stylix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
@@ -156,6 +163,7 @@
|
||||
inputs.nur.overlays.default
|
||||
inputs.niri.overlays.niri
|
||||
# inputs.emacs-overlay.overlay
|
||||
inputs.claude-desktop.overlays.default
|
||||
|
||||
# All my own overlays (derivations + modifications)
|
||||
(import ./overlays {inherit inputs nixpkgs pkgs-stable;})
|
||||
@@ -269,6 +277,7 @@
|
||||
inputs.disko.nixosModules.disko
|
||||
inputs.stylix.nixosModules.stylix
|
||||
inputs.nix-gaming.nixosModules.platformOptimizations
|
||||
inputs.codex-desktop-linux.nixosModules.default
|
||||
]
|
||||
++ commonModules;
|
||||
};
|
||||
|
||||
@@ -78,6 +78,17 @@
|
||||
enableMcpIntegration = true;
|
||||
};
|
||||
|
||||
codexDesktopLinux = {
|
||||
enable = true;
|
||||
linuxFeatures = [
|
||||
"frameless-titlebar"
|
||||
"global-dictation"
|
||||
"read-aloud"
|
||||
"tray-usage"
|
||||
"ui-tweaks"
|
||||
];
|
||||
};
|
||||
|
||||
# NOTE: Starts extremely slow
|
||||
ghostty = {
|
||||
enable = true;
|
||||
@@ -131,10 +142,37 @@
|
||||
mcp = {
|
||||
enable = true;
|
||||
servers = {
|
||||
context7 = {
|
||||
command = "npx";
|
||||
args = ["-y" "@upstash/context7-mcp"];
|
||||
env = {
|
||||
CONTEXT7_API_KEY.file = nixosConfig.sops.secrets.context7-api-key.path;
|
||||
};
|
||||
};
|
||||
# deepwiki = {
|
||||
# # https://mcpservers.org/servers/devin/deepwiki
|
||||
# url = "https://mcp.deepwiki.com/mcp";
|
||||
# };
|
||||
# github = {
|
||||
# # https://mcpservers.org/servers/github-mcp-server
|
||||
# url = "https://api.githubcopilot.com/mcp/";
|
||||
# headers = {
|
||||
# Authorization = "Bearer ${input:github_mcp_pat}";
|
||||
# };
|
||||
# };
|
||||
nixos = {
|
||||
command = "uvx";
|
||||
args = ["mcp-nixos"];
|
||||
};
|
||||
obsidian = {
|
||||
command = "uvx";
|
||||
args = ["mcp-obsidian"];
|
||||
env = {
|
||||
OBSIDIAN_API_KEY.file = nixosConfig.sops.secrets.obsidian-rest-api-key.path;
|
||||
OBSIDIAN_HOST = "127.0.0.1";
|
||||
OBSIDIAN_PORT = "27124";
|
||||
};
|
||||
};
|
||||
svelte = {
|
||||
# claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp
|
||||
command = "npx";
|
||||
@@ -146,6 +184,10 @@
|
||||
command = "npx";
|
||||
args = ["-y" "shadcn@latest" "mcp"];
|
||||
};
|
||||
zotero = {
|
||||
command = "uvx";
|
||||
args = ["zotero-mcp-server"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -239,19 +281,37 @@
|
||||
"*" = "ask";
|
||||
"bash" = {
|
||||
"*" = "ask";
|
||||
"ls *" = "allow";
|
||||
"find *" = "ask"; # Don't want find -exec
|
||||
"file *" = "allow";
|
||||
"wc *" = "allow";
|
||||
"grep *" = "allow";
|
||||
"rg *" = "allow";
|
||||
"test *" = "allow";
|
||||
"echo *" = "allow";
|
||||
"which *" = "allow";
|
||||
"pwd *" = "allow";
|
||||
"dirname *" = "allow";
|
||||
"awk *" = "ask"; # Can modify files
|
||||
"basename *" = "allow";
|
||||
"cmp *" = "allow";
|
||||
"cut *" = "allow";
|
||||
"df *" = "allow";
|
||||
"dirname *" = "allow";
|
||||
"du *" = "allow";
|
||||
"echo *" = "allow";
|
||||
"fd *" = "ask"; # Can execute commands
|
||||
"file *" = "allow";
|
||||
"find *" = "ask"; # Can execute commands
|
||||
"grep *" = "allow";
|
||||
"head *" = "allow";
|
||||
"ls *" = "allow";
|
||||
"nl *" = "allow";
|
||||
"od *" = "allow";
|
||||
"pwd *" = "allow";
|
||||
"readlink *" = "allow";
|
||||
"rg *" = "ask"; # Can execute commands
|
||||
"sed *" = "ask"; # Can modify files
|
||||
"sha256sum *" = "allow";
|
||||
"sha512sum *" = "allow";
|
||||
"sort *" = "ask"; # Can modify files
|
||||
"stat *" = "allow";
|
||||
"tail *" = "allow";
|
||||
"test *" = "allow";
|
||||
"tr *" = "allow";
|
||||
"uniq *" = "ask"; # Can modify files
|
||||
"wc *" = "allow";
|
||||
"which *" = "allow";
|
||||
"xargs *" = "ask"; # Can modify files
|
||||
|
||||
"cat *.env" = "deny";
|
||||
"cat *.env.*" = "deny";
|
||||
@@ -266,11 +326,19 @@
|
||||
"nix why-depends *" = "allow";
|
||||
"nix derivation show *" = "allow";
|
||||
"nix store ping *" = "allow";
|
||||
"nix stire diff-closures *" = "allow";
|
||||
"nix store diff-closures *" = "allow";
|
||||
|
||||
"git status *" = "allow";
|
||||
"git log *" = "allow";
|
||||
"git branch *" = "ask";
|
||||
"git check-ignore *" = "allow";
|
||||
"git diff *" = "allow";
|
||||
"git log *" = "allow";
|
||||
"git ls-files *" = "allow";
|
||||
"git ls-tree *" = "allow";
|
||||
"git remote *" = "ask";
|
||||
"git rev-list *" = "allow";
|
||||
"git rev-parse *" = "allow";
|
||||
"git stash *" = "ask";
|
||||
"git status *" = "allow";
|
||||
};
|
||||
"external_directory" = {
|
||||
"/nix/store/**" = "allow";
|
||||
@@ -294,8 +362,8 @@
|
||||
"question" = "allow";
|
||||
};
|
||||
plugin = [
|
||||
"opencode-claude-auth@latest" # https://github.com/griffinmartin/opencode-claude-auth
|
||||
"@tarquinen/opencode-dcp@latest" # better compacting
|
||||
# "opencode-claude-auth@latest" # https://github.com/griffinmartin/opencode-claude-auth
|
||||
# "@tarquinen/opencode-dcp@latest" # better compacting
|
||||
# "opencode-lmstudio@0.3.1"
|
||||
# "@slkiser/opencode-quota"
|
||||
];
|
||||
@@ -404,12 +472,8 @@
|
||||
makemkv
|
||||
lrcget
|
||||
# msty
|
||||
# jellyfin-media-player # CVE, can't install
|
||||
jellyfin-desktop
|
||||
jellyfin-mpv-shim
|
||||
# tidal-hifi
|
||||
# tidal-dl-ng # TODO: Borked
|
||||
# spotdl
|
||||
tiddl
|
||||
picard
|
||||
handbrake
|
||||
@@ -461,7 +525,7 @@
|
||||
# Paths seen from inside the Flatpak Steam sandbox
|
||||
steam = "$HOME/.steam/steam";
|
||||
steamapps = "$HOME/Games/SteamLibrary/steamapps";
|
||||
proton = "Proton 11.0";
|
||||
proton = "Proton - Experimental";
|
||||
|
||||
# Runs inside flatpak's sandbox
|
||||
innerCommand = ''
|
||||
@@ -528,6 +592,9 @@
|
||||
|
||||
# This is gamescope installed from flatpak
|
||||
"/usr/lib/extensions/vulkan/gamescope/bin"
|
||||
|
||||
# So ModOrganizer2 can load this plugin symlinked from here
|
||||
"${config.home.homeDirectory}/Projects/ModOrganizer2_Cyberpunk_Plugin"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
inputs.nixvim.homeModules.nixvim
|
||||
inputs.textfox.homeManagerModules.default
|
||||
inputs.walker.homeManagerModules.default
|
||||
inputs.codex-desktop-linux.homeManagerModules.default
|
||||
# inputs.stylix.homeModules.stylix
|
||||
# inputs.direnv-instant.homeModules.direnv-instant
|
||||
# inputs.niri.homeModules.niri # Imported by system module
|
||||
|
||||
@@ -58,7 +58,7 @@ in {
|
||||
in
|
||||
lib.mkMerge [
|
||||
# Darwin exclusive config
|
||||
(lib.mkIf pkgs.stdenv.isDarwin {
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
||||
shellInit = ''
|
||||
set fish_greeting
|
||||
yes | fish_config theme save "system-theme"
|
||||
@@ -81,7 +81,7 @@ in {
|
||||
})
|
||||
|
||||
# Linux exclusive config
|
||||
(lib.mkIf pkgs.stdenv.isLinux {
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||||
generateCompletions = nixosConfig.programs.fish.generateCompletions;
|
||||
|
||||
# TODO: There's a bug with the direnv mechanism:
|
||||
|
||||
@@ -48,6 +48,7 @@ in {
|
||||
|
||||
home = {
|
||||
pointerCursor = {
|
||||
enable = true;
|
||||
gtk.enable = lib.mkDefault true;
|
||||
x11.enable = lib.mkDefault true;
|
||||
package = lib.mkDefault color.cursorPackage;
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
inherit (config.homemodules) jellyfin-tui color;
|
||||
|
||||
systemConfig =
|
||||
if pkgs.stdenv.isLinux
|
||||
if pkgs.stdenv.hostPlatform.isLinux
|
||||
then nixosConfig
|
||||
else darwinConfig;
|
||||
in {
|
||||
@@ -24,7 +24,7 @@ in {
|
||||
|
||||
file = let
|
||||
jellyfinUrl =
|
||||
if pkgs.stdenv.isLinux
|
||||
if pkgs.stdenv.hostPlatform.isLinux
|
||||
then "https://jellyfin.local.chriphost.de"
|
||||
else "https://jellyfin.vps.chriphost.de";
|
||||
|
||||
@@ -79,10 +79,10 @@ in {
|
||||
'';
|
||||
in
|
||||
lib.mkMerge [
|
||||
(lib.optionalAttrs pkgs.stdenv.isLinux {
|
||||
(lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
||||
".config/jellyfin-tui/config.yaml".text = configFile;
|
||||
})
|
||||
(lib.optionalAttrs pkgs.stdenv.isDarwin {
|
||||
(lib.optionalAttrs pkgs.stdenv.hostPlatform.isDarwin {
|
||||
"Library/Application Support/jellyfin-tui/config.yaml".text = configFile;
|
||||
})
|
||||
];
|
||||
|
||||
@@ -36,7 +36,7 @@ in {
|
||||
|
||||
settings = lib.mkMerge [
|
||||
# Linux config
|
||||
(lib.mkIf pkgs.stdenv.isLinux {
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||||
allow_remote_control = true; # For nnn file preview or nvim scrollback
|
||||
listen_on = lib.mkDefault "unix:@mykitty"; # This conflicts with direnv-instant
|
||||
})
|
||||
|
||||
@@ -124,6 +124,7 @@ in {
|
||||
matplotlib
|
||||
requests
|
||||
pygments
|
||||
pyyaml
|
||||
]))
|
||||
|
||||
(rWrapper.override {
|
||||
|
||||
@@ -224,6 +224,7 @@ in {
|
||||
};
|
||||
|
||||
pointerCursor = {
|
||||
enable = true;
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
package = color.cursorPackage;
|
||||
@@ -242,7 +243,7 @@ in {
|
||||
# GTK
|
||||
nautilus # Fallback file chooser used by xdg-desktop-portal-gnome
|
||||
sassc
|
||||
gtk-engine-murrine
|
||||
# gtk-engine-murrine # No longer in nixpkgs
|
||||
gnome-themes-extra
|
||||
|
||||
# Qt
|
||||
@@ -304,6 +305,7 @@ in {
|
||||
# TODO: Module
|
||||
walker = {
|
||||
enable = true;
|
||||
package = pkgs.walker; # NOTE: The flake package was broken on 2026-08-31
|
||||
runAsService = true;
|
||||
|
||||
# https://github.com/abenz1267/walker/blob/master/resources/config.toml
|
||||
|
||||
@@ -43,7 +43,9 @@ in {
|
||||
# Nix
|
||||
nix-search-tv # Search nixpkgs, nur, nixos options and homemanager options
|
||||
nix-tree # Browse the nix store sorted by size (gdu for closures)
|
||||
inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default # Search nixpkgs
|
||||
|
||||
# TODO: Still broken on 2026-09-09
|
||||
# inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default # Search nixpkgs
|
||||
|
||||
# Video/Image/Audio utils
|
||||
ffmpeg-full # I love ffmpeg (including ffplay)
|
||||
@@ -81,7 +83,7 @@ in {
|
||||
])
|
||||
|
||||
# Linux exclusive packages
|
||||
(lib.optionals (pkgs.stdenv.isLinux) [
|
||||
(lib.optionals (pkgs.stdenv.hostPlatform.isLinux) [
|
||||
pastel # Color tools
|
||||
nvd # Nix rebuild diff
|
||||
nurl # Generate nix fetcher sections based on URLs
|
||||
@@ -99,6 +101,7 @@ in {
|
||||
lldb
|
||||
inotify-tools
|
||||
xdotool
|
||||
gnome-keyring
|
||||
|
||||
# Hardware/Software info
|
||||
pciutils # lspci
|
||||
@@ -138,7 +141,7 @@ in {
|
||||
])
|
||||
|
||||
# Linux exclusive packages (!headless)
|
||||
(lib.optionals (pkgs.stdenv.isLinux && (!headless)) [
|
||||
(lib.optionals (pkgs.stdenv.hostPlatform.isLinux && (!headless)) [
|
||||
wl-clipboard
|
||||
asciicam
|
||||
|
||||
@@ -158,13 +161,17 @@ in {
|
||||
vlc
|
||||
audacity
|
||||
# ferdium
|
||||
# feishin # electron :(
|
||||
feishin # electron :(
|
||||
playerctl # Media player control
|
||||
czkawka-full # file deduplicator
|
||||
binaryninja-free # reverse engineering
|
||||
tableplus # database explorer
|
||||
# opencode-desktop
|
||||
lmstudio # TODO: Ollama
|
||||
claude-desktop
|
||||
opencode-desktop
|
||||
upscayl
|
||||
calibre
|
||||
|
||||
# Office
|
||||
kdePackages.wacomtablet # For xournalpp/krita
|
||||
@@ -173,7 +180,7 @@ in {
|
||||
hunspellDicts.en_US
|
||||
hunspellDicts.de_DE
|
||||
|
||||
# GTK-Apps
|
||||
# GTK-Apps because I hate nice software
|
||||
# gnome-calculator
|
||||
# gnome-calendar
|
||||
# helvum # unmaintained
|
||||
@@ -190,7 +197,7 @@ in {
|
||||
])
|
||||
|
||||
# Darwin exclusive packages
|
||||
(lib.optionals pkgs.stdenv.isDarwin [
|
||||
(lib.optionals pkgs.stdenv.hostPlatform.isDarwin [
|
||||
# Use homebrew instead
|
||||
# alt-tab-macos
|
||||
# discord
|
||||
|
||||
@@ -19,7 +19,7 @@ in {
|
||||
"*" = {
|
||||
ForwardAgent = false;
|
||||
AddKeysToAgent =
|
||||
if pkgs.stdenv.isLinux
|
||||
if pkgs.stdenv.hostPlatform.isLinux
|
||||
then "no"
|
||||
else "yes"; # Don't have keychain on darwin
|
||||
Compression = true;
|
||||
|
||||
@@ -65,9 +65,10 @@ in {
|
||||
'';
|
||||
|
||||
# https://yazi-rs.github.io/docs/configuration/yazi
|
||||
# "$n": The n-th selected file (1...n)
|
||||
# "$@": All selected files
|
||||
# "$0": The hovered file
|
||||
# %sN: The N-th selected file (1...n)
|
||||
# %s: All selected files
|
||||
# %h: The hovered file (shell keybindings)
|
||||
# File placeholders are shell-escaped by Yazi; do not quote them.
|
||||
settings = {
|
||||
mgr = {
|
||||
show_hidden = false;
|
||||
@@ -80,41 +81,43 @@ in {
|
||||
opener = {
|
||||
play = [
|
||||
{
|
||||
run = ''mpv "$@"'';
|
||||
run = ''mpv %s'';
|
||||
orphan = true;
|
||||
desc = "Play selection with mpv";
|
||||
}
|
||||
{
|
||||
run = ''vlc "$@"'';
|
||||
run = ''vlc %s'';
|
||||
orphan = true;
|
||||
desc = "Play selection with vlc";
|
||||
}
|
||||
];
|
||||
edit = [
|
||||
{
|
||||
run = ''$EDITOR "$@"'';
|
||||
run = ''$EDITOR %s'';
|
||||
block = true;
|
||||
desc = "Edit selection";
|
||||
}
|
||||
];
|
||||
open = [
|
||||
{
|
||||
run = ''xdg-open "$@"'';
|
||||
desc = "Open selection with xdg-open";
|
||||
run = ''xdg-open %s1'';
|
||||
orphan = true;
|
||||
desc = "Open first selected file with xdg-open";
|
||||
}
|
||||
{
|
||||
run = ''imv "$@"'';
|
||||
run = ''imv %s'';
|
||||
orphan = true;
|
||||
desc = "Open selection with imv";
|
||||
}
|
||||
{
|
||||
# TODO: For some reason, junction does not exit after choosing an application...
|
||||
run = ''junction "$@"'';
|
||||
run = ''junction %s'';
|
||||
orphan = true;
|
||||
desc = "Open selection with junction";
|
||||
}
|
||||
];
|
||||
extract = [
|
||||
{
|
||||
run = ''ouch decompress -y "$@"'';
|
||||
run = ''ouch decompress -y %s'';
|
||||
desc = "Extract selection";
|
||||
}
|
||||
];
|
||||
@@ -211,7 +214,7 @@ in {
|
||||
"<C-p>"
|
||||
"a"
|
||||
];
|
||||
run = "plugin ouch";
|
||||
run = "plugin ouch 7z";
|
||||
desc = "Add selection to archive";
|
||||
}
|
||||
{
|
||||
@@ -219,7 +222,7 @@ in {
|
||||
"<C-p>"
|
||||
"d"
|
||||
];
|
||||
run = ''shell -- ripdrag -a -n "$@"'';
|
||||
run = ''shell --orphan -- ripdrag -a -n %s'';
|
||||
desc = "Drag & drop selection";
|
||||
}
|
||||
{
|
||||
@@ -243,7 +246,7 @@ in {
|
||||
"<C-p>"
|
||||
"w"
|
||||
];
|
||||
run = ''wl-copy < "$0"'';
|
||||
run = ''shell -- wl-copy < %h'';
|
||||
desc = "Copy hovered file contents using wl-copy";
|
||||
}
|
||||
|
||||
@@ -255,7 +258,7 @@ in {
|
||||
{
|
||||
on = "y";
|
||||
run = [
|
||||
''shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list''
|
||||
''shell -- for path in %s; do echo "file://$path"; done | wl-copy -t text/uri-list''
|
||||
"yank"
|
||||
];
|
||||
desc = "Copy files to system clipboard on yank";
|
||||
|
||||
+37
-31
@@ -29,36 +29,36 @@
|
||||
# Remove this after jetbrains.jdk builds again (nixpkgs issue 425328)
|
||||
# jetbrains.rider = pkgs-stable.jetbrains.rider;
|
||||
|
||||
jetbrains =
|
||||
prev.jetbrains
|
||||
// {
|
||||
clion = prev.jetbrains.clion.overrideAttrs (oldAttrs: rec {
|
||||
version = "261.22158.47"; # March 6, 2026
|
||||
|
||||
src = prev.fetchurl {
|
||||
url = "https://download-cdn.jetbrains.com/cpp/CLion-${version}.tar.gz";
|
||||
|
||||
# hash = "sha256-h6tnemVnV1YEsvIndwrq2sMsRZYuvTWMU5oqj/hkjdY="; # 261.21849.6
|
||||
hash = "sha256-FUHNRioJvjwOWN+FkXEr3+NWR+QVxaZUOkJ0egQkcCQ="; # 261.22158.47
|
||||
};
|
||||
|
||||
# autoPatchelfIgnoreMissingDeps = [
|
||||
# "libcrypto.so.1.1"
|
||||
# "libssl.so.1.1"
|
||||
# ];
|
||||
|
||||
postFixup = ''
|
||||
# Patch python3.12 shared libs that the upstream glob (python3.8) misses
|
||||
find $out -path '*/python3.*/lib-dynload/*.so' -exec patchelf \
|
||||
--replace-needed libssl.so.1.1 libssl.so \
|
||||
--replace-needed libcrypto.so.1.1 libcrypto.so \
|
||||
--replace-needed libcrypt.so.1 libcrypt.so \
|
||||
{} +
|
||||
|
||||
${oldAttrs.postFixup or ""}
|
||||
'';
|
||||
});
|
||||
};
|
||||
# jetbrains =
|
||||
# prev.jetbrains
|
||||
# // {
|
||||
# clion = prev.jetbrains.clion.overrideAttrs (oldAttrs: rec {
|
||||
# version = "261.22158.47"; # March 6, 2026
|
||||
#
|
||||
# src = prev.fetchurl {
|
||||
# url = "https://download-cdn.jetbrains.com/cpp/CLion-${version}.tar.gz";
|
||||
#
|
||||
# # hash = "sha256-h6tnemVnV1YEsvIndwrq2sMsRZYuvTWMU5oqj/hkjdY="; # 261.21849.6
|
||||
# hash = "sha256-FUHNRioJvjwOWN+FkXEr3+NWR+QVxaZUOkJ0egQkcCQ="; # 261.22158.47
|
||||
# };
|
||||
#
|
||||
# # autoPatchelfIgnoreMissingDeps = [
|
||||
# # "libcrypto.so.1.1"
|
||||
# # "libssl.so.1.1"
|
||||
# # ];
|
||||
#
|
||||
# postFixup = ''
|
||||
# # Patch python3.12 shared libs that the upstream glob (python3.8) misses
|
||||
# find $out -path '*/python3.*/lib-dynload/*.so' -exec patchelf \
|
||||
# --replace-needed libssl.so.1.1 libssl.so \
|
||||
# --replace-needed libcrypto.so.1.1 libcrypto.so \
|
||||
# --replace-needed libcrypt.so.1 libcrypt.so \
|
||||
# {} +
|
||||
#
|
||||
# ${oldAttrs.postFixup or ""}
|
||||
# '';
|
||||
# });
|
||||
# };
|
||||
|
||||
# Now in Nixpkgs
|
||||
# neovide = prev.neovide.overrideAttrs (finalAttrs: prevAttrs: {
|
||||
@@ -94,4 +94,10 @@
|
||||
};
|
||||
in
|
||||
# Composes a list of overlays and returns a single overlay function that combines them.
|
||||
nixpkgs.lib.composeManyExtensions [additions modifications]
|
||||
nixpkgs.lib.composeManyExtensions [
|
||||
additions
|
||||
modifications
|
||||
|
||||
# This is already a complete overlay with final: prev:, so it must be composed directly
|
||||
(import ./latexminted.nix)
|
||||
]
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
# Workaround for a broken `minted` in nixpkgs.
|
||||
#
|
||||
# The TeX Live snapshot in nixpkgs (2026-03-01) predates minted 3.8.0
|
||||
# (2026-03-04) and still ships 3.7.0 together with a bundled `latexminted`
|
||||
# 0.6.0 that does not run. Two independent replacements are needed:
|
||||
#
|
||||
# - the run container: minted.sty from the upstream 3.8.0 release, which
|
||||
# requires `latexminted` >= 0.7.0;
|
||||
# - the bin container: `pkgs.latexminted` (0.7.1), which works.
|
||||
#
|
||||
# The LaTeX package and the Python executable are versioned separately, hence
|
||||
# the two unrelated version numbers.
|
||||
#
|
||||
# Delete this file once nixpkgs ships minted >= 3.8.0.
|
||||
final: prev: let
|
||||
version = "3.8.0";
|
||||
|
||||
# Byte-identical to the CTAN 3.8.0 release, but pinned and already unpacked
|
||||
# (CTAN only ships minted.dtx, which would have to be run through docstrip).
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "gpoore";
|
||||
repo = "minted";
|
||||
rev = "631f7e8e93f37d4f6e7767ff45692d53e7c7360d"; # "[latex] minted v3.8.0"
|
||||
hash = "sha256-xUWScWRR62ikRxxz/YEauWLirvhsQPCcyE1O6cpWZRw=";
|
||||
};
|
||||
|
||||
minted = prev.texlive.pkgs.minted;
|
||||
|
||||
# texlive.withPackages reads pname/tlType/tlDeps/... off the containers, so
|
||||
# reuse the original metadata instead of reconstructing it.
|
||||
container = name: container: script:
|
||||
prev.runCommand "minted-${version}${name}" {
|
||||
inherit (container) meta;
|
||||
passthru =
|
||||
container.passthru
|
||||
// {
|
||||
inherit version;
|
||||
};
|
||||
}
|
||||
script;
|
||||
in {
|
||||
texlive =
|
||||
prev.texlive
|
||||
// {
|
||||
pkgs =
|
||||
prev.texlive.pkgs
|
||||
// {
|
||||
minted =
|
||||
minted
|
||||
// {
|
||||
tex = container "-tex" minted.tex ''
|
||||
install -Dm444 -t "$out"/tex/latex/minted \
|
||||
${src}/latex/minted/minted.sty \
|
||||
${src}/latex/minted/minted1.sty \
|
||||
${src}/latex/minted/minted2.sty
|
||||
'';
|
||||
|
||||
# A bare symlink is enough: texlive.withPackages resolves and wraps
|
||||
# everything under bin/ itself.
|
||||
out = container "" minted.out ''
|
||||
mkdir -p "$out"/bin
|
||||
ln -s ${prev.lib.getExe prev.latexminted} "$out"/bin/latexminted
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
+27
-26
@@ -394,9 +394,9 @@ with mylib.networking; {
|
||||
};
|
||||
|
||||
# Trims the journal if too large
|
||||
journald.extraConfig = ''
|
||||
SystemMaxUse=50M
|
||||
'';
|
||||
journald.settings.Journal = {
|
||||
SystemMaxUse = "50M";
|
||||
};
|
||||
|
||||
acpid.enable = true;
|
||||
dbus.enable = true;
|
||||
@@ -418,29 +418,30 @@ with mylib.networking; {
|
||||
|
||||
systemd = {
|
||||
# TODO: Technically this should be a user service if it runs as ${username}?
|
||||
timers."refresh-nps-cache" = {
|
||||
wantedBy = ["timers.target"];
|
||||
timerConfig = {
|
||||
OnCalendar = "weekly"; # or however often you'd like
|
||||
Persistent = true;
|
||||
Unit = "refresh-nps-cache.service";
|
||||
};
|
||||
};
|
||||
|
||||
services."refresh-nps-cache" = {
|
||||
# Make sure `nix` and `nix-env` are findable by systemd.services.
|
||||
path = ["/run/current-system/sw/"];
|
||||
after = ["network.target"];
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
User = "${username}";
|
||||
};
|
||||
script = ''
|
||||
set -eu
|
||||
echo "Start refreshing nps cache..."
|
||||
${inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default}/bin/nps -dddd -e -r
|
||||
echo "... finished nps cache with exit code $?."
|
||||
'';
|
||||
};
|
||||
# timers."refresh-nps-cache" = {
|
||||
# wantedBy = ["timers.target"];
|
||||
# timerConfig = {
|
||||
# OnCalendar = "weekly"; # or however often you'd like
|
||||
# Persistent = true;
|
||||
# Unit = "refresh-nps-cache.service";
|
||||
# };
|
||||
# };
|
||||
|
||||
# services."refresh-nps-cache" = {
|
||||
# # Make sure `nix` and `nix-env` are findable by systemd.services.
|
||||
# path = ["/run/current-system/sw/"];
|
||||
# after = ["network.target"];
|
||||
# serviceConfig = {
|
||||
# Type = "oneshot";
|
||||
# User = "${username}";
|
||||
# };
|
||||
# script = ''
|
||||
# set -eu
|
||||
# echo "Start refreshing nps cache..."
|
||||
# ${inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default}/bin/nps -dddd -e -r
|
||||
# echo "... finished nps cache with exit code $?."
|
||||
# '';
|
||||
# };
|
||||
};
|
||||
}
|
||||
|
||||
@@ -139,6 +139,8 @@
|
||||
sops-nix.secrets.${username} = [
|
||||
"makemkv-app-key"
|
||||
"restic-repo-key"
|
||||
"context7-api-key"
|
||||
"obsidian-rest-api-key"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
+94
-94
@@ -93,101 +93,101 @@
|
||||
};
|
||||
};
|
||||
|
||||
games = {
|
||||
type = "disk";
|
||||
device = "/dev/disk/by-id/nvme-WD_BLACK_SN850X_2000GB_231623802252";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
luks = {
|
||||
label = "LUKS_GAMES";
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "luks";
|
||||
name = "crypted_games";
|
||||
# games = {
|
||||
# type = "disk";
|
||||
# device = "/dev/disk/by-id/nvme-WD_BLACK_SN850X_2000GB_231623802252";
|
||||
# content = {
|
||||
# type = "gpt";
|
||||
# partitions = {
|
||||
# luks = {
|
||||
# label = "LUKS_GAMES";
|
||||
# size = "100%";
|
||||
# content = {
|
||||
# type = "luks";
|
||||
# name = "crypted_games";
|
||||
#
|
||||
# extraOpenArgs = [
|
||||
# "--perf-no_read_workqueue"
|
||||
# "--perf-no_write_workqueue"
|
||||
# ];
|
||||
#
|
||||
# settings = {
|
||||
# allowDiscards = true;
|
||||
# crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
|
||||
#
|
||||
# # Disable for interactive password entry
|
||||
# # This is contained on the main disk, so by unlocking the main disk with the password,
|
||||
# # the second disk can unlock automatically
|
||||
# keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
|
||||
# fallbackToPassword = false;
|
||||
# };
|
||||
#
|
||||
# content = {
|
||||
# type = "btrfs";
|
||||
# extraArgs = ["-L" "GAMES" "-f"];
|
||||
# subvolumes = {
|
||||
# "data" = {
|
||||
# mountpoint = "/home/christoph/Games";
|
||||
# mountOptions = [
|
||||
# "compress=zstd"
|
||||
# "noatime"
|
||||
# ];
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
|
||||
extraOpenArgs = [
|
||||
"--perf-no_read_workqueue"
|
||||
"--perf-no_write_workqueue"
|
||||
];
|
||||
|
||||
settings = {
|
||||
allowDiscards = true;
|
||||
crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
|
||||
|
||||
# Disable for interactive password entry
|
||||
# This is contained on the main disk, so by unlocking the main disk with the password,
|
||||
# the second disk can unlock automatically
|
||||
keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
|
||||
fallbackToPassword = false;
|
||||
};
|
||||
|
||||
content = {
|
||||
type = "btrfs";
|
||||
extraArgs = ["-L" "GAMES" "-f"];
|
||||
subvolumes = {
|
||||
"data" = {
|
||||
mountpoint = "/home/christoph/Games";
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
ssd = {
|
||||
type = "disk";
|
||||
device = "/dev/disk/by-id/nvme-eui.00253857019ebd67";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
luks = {
|
||||
label = "LUKS_SSD";
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "luks";
|
||||
name = "crypted_ssd";
|
||||
|
||||
extraOpenArgs = [
|
||||
"--perf-no_read_workqueue"
|
||||
"--perf-no_write_workqueue"
|
||||
];
|
||||
|
||||
settings = {
|
||||
allowDiscards = true;
|
||||
crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
|
||||
|
||||
# Disable for interactive password entry
|
||||
# This is contained on the main disk, so by unlocking the main disk with the password,
|
||||
# the second disk can unlock automatically
|
||||
keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
|
||||
fallbackToPassword = false;
|
||||
};
|
||||
|
||||
content = {
|
||||
type = "btrfs";
|
||||
extraArgs = ["-L" "SSD" "-f"];
|
||||
subvolumes = {
|
||||
"data" = {
|
||||
mountpoint = "/home/christoph/SSD";
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
# ssd = {
|
||||
# type = "disk";
|
||||
# device = "/dev/disk/by-id/nvme-eui.00253857019ebd67";
|
||||
# content = {
|
||||
# type = "gpt";
|
||||
# partitions = {
|
||||
# luks = {
|
||||
# label = "LUKS_SSD";
|
||||
# size = "100%";
|
||||
# content = {
|
||||
# type = "luks";
|
||||
# name = "crypted_ssd";
|
||||
#
|
||||
# extraOpenArgs = [
|
||||
# "--perf-no_read_workqueue"
|
||||
# "--perf-no_write_workqueue"
|
||||
# ];
|
||||
#
|
||||
# settings = {
|
||||
# allowDiscards = true;
|
||||
# crypttabExtraOpts = ["fido2-device=auto" "token-timeout=10" "tries=5"];
|
||||
#
|
||||
# # Disable for interactive password entry
|
||||
# # This is contained on the main disk, so by unlocking the main disk with the password,
|
||||
# # the second disk can unlock automatically
|
||||
# keyFile = "/persist/home/christoph/.secrets/luks.keyfile";
|
||||
# fallbackToPassword = false;
|
||||
# };
|
||||
#
|
||||
# content = {
|
||||
# type = "btrfs";
|
||||
# extraArgs = ["-L" "SSD" "-f"];
|
||||
# subvolumes = {
|
||||
# "data" = {
|
||||
# mountpoint = "/home/christoph/SSD";
|
||||
# mountOptions = [
|
||||
# "compress=zstd"
|
||||
# "noatime"
|
||||
# ];
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
}: let
|
||||
vectorchordVersion = "0.4.2";
|
||||
pgvectorsVersion = "0.2.0";
|
||||
immichVersion = "3.0.1-cuda";
|
||||
immichVersion = "3.2.0-cuda";
|
||||
in {
|
||||
virtualisation.oci-containers.containers = {
|
||||
immich-database = {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
jellyfinVersion = "10.11.2";
|
||||
jellyfinVersion = "version-12.1ubu2604";
|
||||
in {
|
||||
virtualisation.oci-containers.containers = {
|
||||
jellyfin = {
|
||||
|
||||
@@ -42,6 +42,13 @@ in {
|
||||
|
||||
boot.lanzaboote = {
|
||||
enable = true;
|
||||
autoGenerateKeys.enable = true;
|
||||
|
||||
# WARN: Needs persistent /var/lib/auto-cryptenroll
|
||||
autoEnrollKeys = {
|
||||
enable = true;
|
||||
includeMicrosoftKeys = true;
|
||||
};
|
||||
|
||||
# WARN: Make sure to persist this if using impermanence!
|
||||
pkiBundle = "/var/lib/sbctl";
|
||||
|
||||
@@ -76,6 +76,7 @@ in {
|
||||
|
||||
(mkRDir "/var/db/sudo" m711)
|
||||
|
||||
(mkRDir "/var/lib/auto-cryptenroll" m755) # Lanzaboote
|
||||
(mkRDir "/var/lib/bluetooth" m755) # m700
|
||||
(mkRDir "/var/lib/btrfs" m755)
|
||||
(mkRDir "/var/lib/containers" m755)
|
||||
@@ -84,7 +85,7 @@ in {
|
||||
(mkRDir "/var/lib/libvirt" m755)
|
||||
(mkRDir "/var/lib/NetworkManager" m755)
|
||||
(mkRDir "/var/lib/nixos" m755)
|
||||
(mkRDir "/var/lib/sbctl" m755)
|
||||
(mkRDir "/var/lib/sbctl" m755) # Lanzaboote
|
||||
(mkRDir "/var/lib/systemd" m755)
|
||||
|
||||
(mkRDir "/var/tmp" m777)
|
||||
@@ -121,6 +122,7 @@ in {
|
||||
# The shit some applications add to ~/ without asking
|
||||
# (mkUDir ".android" m755) # Unity
|
||||
(mkUDir ".claude" m755)
|
||||
(mkUDir ".codex" m755)
|
||||
# (mkUDir ".comfy" m755)
|
||||
(mkUDir ".docker" m755)
|
||||
# (mkUDir ".gradle" m755) # Unity
|
||||
@@ -156,11 +158,14 @@ in {
|
||||
|
||||
# Config
|
||||
# (mkUDir ".config/.android" m755) # Unity
|
||||
(mkUDir ".config/ai.opencode.desktop" m755)
|
||||
# (mkUDir ".config/beekeeper-studio" m755)
|
||||
(mkUDir ".config/beets" m755)
|
||||
(mkUDir ".config/blender" m755)
|
||||
(mkUDir ".config/chromium" m755) # TODO: Remove this someday
|
||||
(mkUDir ".config/chromium" m755)
|
||||
(mkUDir ".config/Claude" m755) # Claude desktop
|
||||
(mkUDir ".config/Code" m755)
|
||||
(mkUDir ".config/Codex" m755)
|
||||
(mkUDir ".config/Ferdium" m755)
|
||||
(mkUDir ".config/feishin" m755)
|
||||
(mkUDir ".config/fish/completions" m755)
|
||||
|
||||
@@ -21,7 +21,7 @@ in {
|
||||
${mime.defaultTextEditor} = mime.textTypes;
|
||||
${mime.defaultFileBrowser} = ["inode/directory"];
|
||||
${mime.defaultWebBrowser} = mime.webTypes;
|
||||
${mime.defaultPdfViewer} = ["application/pdf"];
|
||||
${mime.defaultPdfViewer} = ["application/pdf" "application/epub+zip"];
|
||||
${mime.defaultImageViewer} = mime.imageTypes;
|
||||
|
||||
# If audio and video player are equal, we assign all types to the audio player,
|
||||
@@ -75,6 +75,11 @@ in {
|
||||
"chromium-browser.desktop"
|
||||
"com.google.Chrome.desktop"
|
||||
"firefox.desktop"
|
||||
"org.onlyoffice.desktopeditors.desktop"
|
||||
"calibre-ebook-edit.desktop"
|
||||
"calibre-ebook-viewer.desktop"
|
||||
"calibre-gui.desktop"
|
||||
"calibre-lrfviewer.desktop"
|
||||
];
|
||||
"text/plain" = [
|
||||
"firefox.desktop"
|
||||
|
||||
@@ -34,11 +34,11 @@ in {
|
||||
secrets = let
|
||||
mkSecret = name: {
|
||||
${name} = lib.mkMerge [
|
||||
(lib.optionalAttrs pkgs.stdenv.isLinux {
|
||||
(lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
||||
owner = config.users.users.${username}.name;
|
||||
group = config.users.users.${username}.group;
|
||||
})
|
||||
(lib.optionalAttrs pkgs.stdenv.isDarwin {
|
||||
(lib.optionalAttrs pkgs.stdenv.hostPlatform.isDarwin {
|
||||
owner = config.users.users.${username}.name;
|
||||
group = "staff"; # Apparently there's no way to get the primary group?
|
||||
})
|
||||
|
||||
@@ -11,6 +11,8 @@ jellyfin-password: ENC[AES256_GCM,data:ugfwgpkIiLY0O+m/UGnBB5AFPBkCcai+RQOkxiCSo
|
||||
#
|
||||
makemkv-app-key: ENC[AES256_GCM,data:/pTxr4q4ucJLx5VI8ySzOgd4g1s+6lcZNe4crxRmidTYrhJ0I6V3CIhm4wLC105W+Xka6HIZTqPn8SbqcMC4Dt3wSus=,iv:aYsGobD+Vl/VUNAHcAxQb7HEmLT8aXyKNOELgzvKDH4=,tag:xhnVb/ns6VZEnTuoUv9w5A==,type:str]
|
||||
restic-repo-key: ENC[AES256_GCM,data:lSFuhjbhdQq4cabAVFGQ4kuaJxb7EhXgBDlgoEQWJhs=,iv:7IhGDBYEwY1TwLvc/4DOkUBQ3eqSszZcKwnT7Lllfps=,tag:yJVlMi9X0W+Kh3zMkb0QuA==,type:str]
|
||||
context7-api-key: ENC[AES256_GCM,data:lZfrz5pBDybBkswgZM3jKLM9bdXOXeFUI9wFB8BJ5aLYqmf2oRHIJi/85w==,iv:MQYZKsTG++CYfpJret1WSv7+q2ZmONCDl4OwdRo+YUk=,tag:MrWBn3CKDUDZLLIFZWV0tA==,type:str]
|
||||
obsidian-rest-api-key: ENC[AES256_GCM,data:+CmQAX0AoSmCPMF9QL3NkWVArt7N0Ci9obHKpwQUPolcdsTnAsPMWu6GAWVvqs8Qmjz5Hk3gwM0YP2JdLEF0cw==,iv:U1SsPdiJIT7q+md1Q61Ro530s7vrl+XBgu+6/ffcrEQ=,tag:xrTRPve9DcumQjlr+aKsLg==,type:str]
|
||||
#
|
||||
#ENC[AES256_GCM,data:Raagjz1qPvXC,iv:OSWTKaIlmo1paU2ZZn20XMeZ2gdM52pHmVZ3m2ngCdI=,tag:bPCdvjOFjpxxkrwA7Mhl5Q==,type:comment]
|
||||
#
|
||||
@@ -39,7 +41,7 @@ sops:
|
||||
FAbbvZZ/EdIk/njLEcayFN7B4ftTcD/f4XJZiyosilZnIkk76bMOHA==
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
recipient: age14ph8vrj657e7s35d60xehzuq46t9zd6pzcm6pw4jragzrvf6xs9s77usnm
|
||||
lastmodified: "2026-07-02T19:27:51Z"
|
||||
mac: ENC[AES256_GCM,data:IkpzDK4F1pEoGx1WyG8ksgMFuEa2h9KeF3m3PzM8KQkWo9iVt3jJn80jHEzWAm8riWIbo7fRkxyRetlSFTZf+MrByotgkWVVx6dMIVNYAOcg2IOK3s4NnX0L65MjbfWGQp/d27QzzEbd14WyklMWm2UO3ei82tF+UKYUEFJ2BWk=,iv:8LimsncylU+HhvVKNnjfyqZskZA72FQe92C4VrNWyQ0=,tag:L6CEno9m3ZncOskjZibq+Q==,type:str]
|
||||
lastmodified: "2026-09-14T21:08:40Z"
|
||||
mac: ENC[AES256_GCM,data:tfkmsJfWYV11ruw8fCUkJ2gWQAvQJ4Gmsz72LnmiCdlvzeo4x9iM268ZJnuaPRuv6BXLp2XGGA4CbqhfZbO6cRxAawVfbxY2IRSo1JWITIY8qxKLb07jDMpQu/JjJz7J5T556UEvOsW6HrK3d0xvNlJ4yQIuVCBjttKTdRu5g9Y=,iv:mV5i0xJGu6fnSNPLm9J3NDDgN+sB6iadue917UjR+oU=,tag:h/vaeQ02wK/qKANerWIywQ==,type:str]
|
||||
unencrypted_suffix: _unencrypted
|
||||
version: 3.13.1
|
||||
version: 3.13.3
|
||||
|
||||
Reference in New Issue
Block a user