Compare commits
74 Commits
e249f13313
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| cbd4e7b4bb | |||
| a1057c5954 | |||
| 2409574330 | |||
| 6b09de5afc | |||
| e5ca18d368 | |||
| 68ac29b68b | |||
| e89003a063 | |||
| 62072e71ea | |||
| 6bfb3286e3 | |||
| 325705f4cb | |||
| 96a92bd67f | |||
| b17b2ab977 | |||
| 2d2a7e6765 | |||
| a9dfdccf63 | |||
| 8a1ed7b0ab | |||
| 04a9d2ce76 | |||
| d4d9e715ff | |||
| 3b23c25509 | |||
| 0874bb6698 | |||
| 316bffb9f5 | |||
| b19be561bf | |||
| 452426f363 | |||
| a50801f5bb | |||
| dee3da3b12 | |||
| 8cdb41674c | |||
| eaf994c5b5 | |||
| ccc7116c3f | |||
| 7be66a5d2f | |||
| 686501d464 | |||
| 09686e1ee6 | |||
| 7caf921746 | |||
| 7b86a1cb21 | |||
| 4f18892d1b | |||
| 580fcac817 | |||
| 8364bbb3cb | |||
| e0e7f514ec | |||
| 82f69166c5 | |||
| dce2e160da | |||
| b10e5253f8 | |||
| d4a0ab60cf | |||
| 5269b2ee10 | |||
| d9c9b55d49 | |||
| fd5e28b368 | |||
| da793b82e7 | |||
| c2e4fbb59f | |||
| 25a7f185bc | |||
| 044a0156df | |||
| 4e0cb41780 | |||
| 34737a5aef | |||
| 81ea7f695e | |||
| ea7707d050 | |||
| 30a54caa03 | |||
| 3ed6781ae1 | |||
| 3418e577c5 | |||
| 2741e25585 | |||
| e9aed100af | |||
| 1ac96316ea | |||
| 8d636ce194 | |||
| bbeed99f43 | |||
| 7e6ece1b0d | |||
| 60952a0e7f | |||
| 738013df66 | |||
| 34160d0de4 | |||
| 02b8a16f41 | |||
| 684f6fdea5 | |||
| 7ef1785a0f | |||
| 49c0c607d8 | |||
| ab52b423ee | |||
| f852a73d47 | |||
| 998ebc1164 | |||
| 9acb378e5f | |||
| dca434c0ba | |||
| c22ff38874 | |||
| 0591868be3 |
43
AGENTS.md
43
AGENTS.md
@@ -4,28 +4,8 @@ This repository contains NixOS, nix-darwin, and Home Manager configurations in N
|
||||
|
||||
## Build, Test, and Deployment Commands
|
||||
|
||||
### Build and Apply Configurations
|
||||
|
||||
**Linux (NixOS):**
|
||||
```bash
|
||||
just build # Build configuration
|
||||
just install cores='32' # Apply with 32 cores
|
||||
sudo nixos-rebuild test --fast --flake . # Test without activation
|
||||
sudo nixos-rebuild switch --rollback --flake . # Rollback
|
||||
```
|
||||
|
||||
**macOS (nix-darwin):**
|
||||
```bash
|
||||
just build # Build configuration
|
||||
just install # Apply configuration
|
||||
```
|
||||
|
||||
**Home Manager:**
|
||||
```bash
|
||||
just home
|
||||
```
|
||||
|
||||
### Deploy to Remote Machines (deploy-rs)
|
||||
### Build and Apply Configurations & Deploy to Remote Machines
|
||||
Can use deploy for both local and remote hosts
|
||||
|
||||
```bash
|
||||
deploy -s .#ryu # Desktop (x86_64-linux)
|
||||
@@ -35,6 +15,23 @@ deploy -s .#kuro # MacBook M4 Pro (aarch64-darwin)
|
||||
deploy -s .#shiro # Mac Mini M4 (aarch64-darwin)
|
||||
```
|
||||
|
||||
**Linux (NixOS):**
|
||||
```bash
|
||||
deploy -s .#ryu
|
||||
deploy -s .#tako
|
||||
deploy -s .#tako --builders '' --cores 32 # with no other builders and 32 cores
|
||||
deploy -s .#ryu --max-jobs 4 --cores 32 # use 32 cores and 4 parallel derivations
|
||||
sudo nixos-rebuild test --fast --flake . # Test without activation
|
||||
sudo nixos-rebuild switch --rollback --flake . # Rollback
|
||||
```
|
||||
|
||||
**macOS (nix-darwin):**
|
||||
```bash
|
||||
deploy -s .#kuro
|
||||
deploy -s .#shiro
|
||||
sudo nix-darwin test --fast --flake .
|
||||
```
|
||||
|
||||
### Validation and Formatting
|
||||
|
||||
```bash
|
||||
@@ -164,7 +161,7 @@ just add program myprogram # Creates home/programs/myprogram.nix and adds impor
|
||||
|
||||
### Adding a new dns entry
|
||||
```bash
|
||||
cfcli add --type A foobar.bazbar.biz 192.168.0.1
|
||||
cfcli add --type A foobar.bazbar.biz 100.102.64.19
|
||||
```
|
||||
|
||||
### Creating a Module
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
# "mirai:bcVPoFGBZ0i7JAKMXIqLj2GY3CulLC4kP7rQyqes1RM="
|
||||
];
|
||||
download-buffer-size = 524288000;
|
||||
};
|
||||
extraOptions = ''
|
||||
build-users-group = nixbld
|
||||
|
||||
@@ -6,10 +6,7 @@
|
||||
casks = [
|
||||
"1password"
|
||||
"lunar"
|
||||
"orcaslicer"
|
||||
"raycast"
|
||||
"zed"
|
||||
"zen"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,15 +2,12 @@
|
||||
homebrew = {
|
||||
enable = true;
|
||||
brews = [
|
||||
"docker-compose"
|
||||
];
|
||||
casks = [
|
||||
"1password"
|
||||
"docker"
|
||||
"raycast"
|
||||
"lunar"
|
||||
"orcaslicer"
|
||||
"zed"
|
||||
"zen"
|
||||
];
|
||||
};
|
||||
|
||||
@@ -1,15 +1,18 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
# ../../../modules/darwin/caddy
|
||||
./yabai.nix
|
||||
./skhd.nix
|
||||
./tailscale.nix
|
||||
./autossh.nix
|
||||
# ./caddy.nix
|
||||
./sops.nix
|
||||
# ./lmstudio.nix
|
||||
# ./colima.nix
|
||||
# ./zerotier.nix
|
||||
|
||||
# ./aerospace.nix
|
||||
# ./caddy.nix
|
||||
# ./colima.nix
|
||||
# ./lmstudio.nix
|
||||
# ./zerotier.nix
|
||||
|
||||
./autossh.nix
|
||||
./skhd.nix
|
||||
./sops.nix
|
||||
./sunshine.nix
|
||||
./tailscale.nix
|
||||
./yabai.nix
|
||||
];
|
||||
}
|
||||
|
||||
10
darwin/shiro/services/sunshine.nix
Normal file
10
darwin/shiro/services/sunshine.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{...}: {
|
||||
homebrew = {
|
||||
taps = [
|
||||
"lizardbyte/homebrew"
|
||||
];
|
||||
brews = [
|
||||
"lizardbyte/homebrew/sunshine-beta"
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -5,14 +5,6 @@
|
||||
...
|
||||
}: {
|
||||
nodes = {
|
||||
mirai = {
|
||||
hostname = "mirai.darksailor.dev";
|
||||
profiles.system = {
|
||||
sshUser = "fs0c131y";
|
||||
path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.mirai;
|
||||
user = "root";
|
||||
};
|
||||
};
|
||||
tsuba = {
|
||||
hostname = "tsuba.darksailor.dev";
|
||||
profiles.system = {
|
||||
|
||||
2213
flake.lock
generated
2213
flake.lock
generated
File diff suppressed because it is too large
Load Diff
126
flake.nix
126
flake.nix
@@ -17,10 +17,6 @@
|
||||
url = "github:nix-community/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
stylix-stable = {
|
||||
url = "github:nix-community/stylix/release-25.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
};
|
||||
home-manager-stable = {
|
||||
url = "github:nix-community/home-manager/release-25.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
@@ -51,26 +47,10 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nur.url = "github:nix-community/nur";
|
||||
hyprland = {
|
||||
url = "github:hyprwm/Hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
hyprlock = {
|
||||
url = "github:hyprwm/hyprlock";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
zjstatus = {
|
||||
url = "github:dj95/zjstatus";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
rust-overlay = {
|
||||
url = "github:oxalica/rust-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
openapi-tui = {
|
||||
url = "github:zaghaghi/openapi-tui";
|
||||
flake = false;
|
||||
};
|
||||
musnix = {
|
||||
url = "github:musnix/musnix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -83,26 +63,10 @@
|
||||
url = "github:Mic92/sops-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
csshacks = {
|
||||
url = "github:MrOtherGuy/firefox-csshacks";
|
||||
flake = false;
|
||||
};
|
||||
nno = {
|
||||
url = "github:nvim-neorg/nixpkgs-neorg-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
pets = {
|
||||
url = "github:giusgad/pets.nvim";
|
||||
flake = false;
|
||||
};
|
||||
rest-nvim = {
|
||||
url = "github:rest-nvim/rest.nvim";
|
||||
flake = false;
|
||||
};
|
||||
neogit = {
|
||||
url = "github:NeogitOrg/neogit/nightly";
|
||||
flake = false;
|
||||
};
|
||||
d2 = {
|
||||
url = "github:terrastruct/d2-vim";
|
||||
flake = false;
|
||||
@@ -127,25 +91,6 @@
|
||||
url = "github:pest-parser/tree-sitter-pest";
|
||||
flake = false;
|
||||
};
|
||||
navigator = {
|
||||
url = "github:ray-x/navigator.lua";
|
||||
flake = false;
|
||||
};
|
||||
guihua = {
|
||||
url = "github:ray-x/guihua.lua";
|
||||
flake = false;
|
||||
};
|
||||
ghostty = {
|
||||
url = "github:ghostty-org/ghostty";
|
||||
};
|
||||
typr = {
|
||||
url = "github:nvzone/typr";
|
||||
flake = false;
|
||||
};
|
||||
volt = {
|
||||
url = "github:nvzone/volt";
|
||||
flake = false;
|
||||
};
|
||||
arion = {
|
||||
url = "github:hercules-ci/arion";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -155,9 +100,9 @@
|
||||
};
|
||||
zen-browser = {
|
||||
url = "github:0xc000022070/zen-browser-flake";
|
||||
# IMPORTANT: we're using "libgbm" and is only available in unstable so ensure
|
||||
# to have it up-to-date or simply don't specify the nixpkgs input
|
||||
# IMPORTANT: To ensure compatibility with the latest Firefox version, use nixpkgs-unstable.
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.home-manager.follows = "home-manager";
|
||||
};
|
||||
|
||||
anyrun = {
|
||||
@@ -169,18 +114,10 @@
|
||||
url = "github:uttarayan21/anyrun-hyprwin";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
anyrun-rink = {
|
||||
url = "github:uttarayan21/anyrun-rink";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
onepassword-shell-plugins = {
|
||||
url = "github:1Password/shell-plugins";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
zeronsd = {
|
||||
url = "github:uttarayan21/zeronsd";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
tmux-float = {
|
||||
url = "github:uttarayan21/tmux-float";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -199,24 +136,6 @@
|
||||
# url = "path:/home/servius/Projects/ALVR";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
ik_llama = {
|
||||
url = "github:ikawrakow/ik_llama.cpp?submodules=1";
|
||||
# submodules = true;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
llama-cpp = {
|
||||
# url = "https://github.com/ggml-org/llama.cpp";
|
||||
url = "github:ggml-org/llama.cpp/b6178?submodules=1";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
yabai = {
|
||||
url = "github:koekeishiya/yabai";
|
||||
flake = false;
|
||||
};
|
||||
nix-auth = {
|
||||
url = "github:numtide/nix-auth";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixpkgs-xr = {
|
||||
url = "github:nix-community/nixpkgs-xr";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -241,16 +160,33 @@
|
||||
url = "github:vicinaehq/vicinae";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
wivrn = {
|
||||
url = "github:uttarayan21/wivrn?submodules=1";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
eilmeldung = {
|
||||
url = "github:christo-auer/eilmeldung";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
hytale-launcher = {
|
||||
url = "github:JPyke3/hytale-launcher-nix";
|
||||
servius-website = {
|
||||
url = "git+https://git.darksailor.dev/servius/servius.neocities.org";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixify = {
|
||||
url = "github:uttarayan21/nixify";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
tangled-core = {
|
||||
url = "git+https://tangled.org/tangled.org/core";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
hyprland = {
|
||||
url = "github:hyprwm/Hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
iamb = {
|
||||
url = "github:ulyssa/iamb/latest";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
cinny = {
|
||||
url = "github:cinnyapp/cinny/dev";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -429,16 +365,20 @@
|
||||
};
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
cratesNix = inputs.crates-nix.mkLib {inherit pkgs;};
|
||||
in {
|
||||
# packages = rec {
|
||||
# default = neovim;
|
||||
# neovim = pkgs.nixvim.makeNixvim (pkgs.callPackage ./neovim);
|
||||
# };
|
||||
devShells = {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [sops just openssl ast-grep];
|
||||
};
|
||||
};
|
||||
packages = {
|
||||
default = cratesNix.buildCrate "ironclaw" {
|
||||
nativeBuildInputs = [pkgs.pkg-config];
|
||||
buildInputs = [pkgs.openssl];
|
||||
doCheck = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@@ -5,43 +5,65 @@
|
||||
}: {
|
||||
sops = {
|
||||
secrets."accounts/mail/fastmail" = {};
|
||||
secrets."accounts/calendar/fastmail" = {};
|
||||
};
|
||||
accounts.email = {
|
||||
maildirBasePath = "Mail";
|
||||
accounts = {
|
||||
fastmail = rec {
|
||||
maildir = {
|
||||
path = "fastmail";
|
||||
accounts = {
|
||||
email = {
|
||||
maildirBasePath = "Mail";
|
||||
accounts = {
|
||||
fastmail = rec {
|
||||
maildir = {
|
||||
path = "fastmail";
|
||||
};
|
||||
primary = true;
|
||||
address = "email@uttarayan.me";
|
||||
aliases = ["servius@darksailor.dev"];
|
||||
userName = address;
|
||||
realName = "Uttarayan Mondal";
|
||||
imap = {
|
||||
host = "imap.fastmail.com";
|
||||
port = 993;
|
||||
tls.enable = true;
|
||||
# authentication = "login";
|
||||
};
|
||||
smtp = {
|
||||
host = "smtp.fastmail.com";
|
||||
port = 465;
|
||||
tls.enable = true;
|
||||
};
|
||||
passwordCommand = ["cat" "${config.sops.secrets."accounts/mail/fastmail".path}"];
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "both";
|
||||
};
|
||||
};
|
||||
primary = true;
|
||||
address = "email@uttarayan.me";
|
||||
aliases = ["servius@darksailor.dev"];
|
||||
userName = address;
|
||||
realName = "Uttarayan Mondal";
|
||||
imap = {
|
||||
host = "imap.fastmail.com";
|
||||
port = 993;
|
||||
tls.enable = true;
|
||||
# authentication = "login";
|
||||
};
|
||||
smtp = {
|
||||
host = "smtp.fastmail.com";
|
||||
port = 465;
|
||||
tls.enable = true;
|
||||
};
|
||||
imapnotify = {
|
||||
enable = true;
|
||||
};
|
||||
passwordCommand = ["cat" "${config.sops.secrets."accounts/mail/fastmail".path}"];
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "both";
|
||||
};
|
||||
};
|
||||
calendar = {
|
||||
basePath = "Calendar";
|
||||
accounts = {
|
||||
fastmail = {
|
||||
remote = {
|
||||
url = "https://caldav.fastmail.com/dav/calendars/user/email@uttarayan.me";
|
||||
userName = "email@uttarayan.me";
|
||||
passwordCommand = ["cat" "${config.sops.secrets."accounts/calendar/fastmail".path}"];
|
||||
type = "caldav";
|
||||
};
|
||||
khal = {
|
||||
enable = true;
|
||||
addresses = ["email@uttarayan.me"];
|
||||
type = "discover";
|
||||
};
|
||||
vdirsyncer = {
|
||||
enable = true;
|
||||
conflictResolution = "remote wins";
|
||||
collections = ["from a"];
|
||||
metadata = ["color" "displayname"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
programs.mbsync.enable = true;
|
||||
services.mbsync.enable = pkgs.stdenv.isLinux;
|
||||
# accounts.email.accounts.<name>.mbsync.create
|
||||
# services.mbsync.enable = true;
|
||||
}
|
||||
|
||||
9
home/apps/affine.nix
Normal file
9
home/apps/affine.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.affine
|
||||
];
|
||||
}
|
||||
1
home/apps/cinny.nix
Normal file
1
home/apps/cinny.nix
Normal file
@@ -0,0 +1 @@
|
||||
{pkgs, ...}: {home.packages = [pkgs.cinny-desktop];}
|
||||
@@ -7,42 +7,47 @@ lib.optionalAttrs device.hasGui {
|
||||
imports = [
|
||||
# ./audacity.nix
|
||||
# ./bottles.nix
|
||||
# ./cinny.nix
|
||||
# ./cursor.nix
|
||||
# ./gimp.nix
|
||||
# ./guitarix.nix
|
||||
# ./ida.nix
|
||||
# ./jellyflix.nix
|
||||
# ./kicad.nix
|
||||
# ./lmstudio.nix
|
||||
# ./neovide.nix
|
||||
# ./openscad.nix
|
||||
# ./orcaslicer.nix
|
||||
# ./pcsx2.nix
|
||||
# ./prismlauncher.nix
|
||||
# ./rpcs3.nix
|
||||
# ./shadps4.nix
|
||||
# ./thunderbird.nix
|
||||
# ./tsukimi.nix
|
||||
# ./vial.nix
|
||||
# ./vlc.nix
|
||||
# ./vscode.nix
|
||||
# ./zen.nix
|
||||
|
||||
./moonlight.nix
|
||||
# ./zed.nix
|
||||
|
||||
./affine.nix
|
||||
./blueman.nix
|
||||
./chromium.nix
|
||||
./discord.nix
|
||||
# ./discord.nix
|
||||
./firefox.nix
|
||||
./ghostty.nix
|
||||
./hyprpicker.nix
|
||||
./kitty.nix
|
||||
./lmstudio.nix
|
||||
./matrix.nix
|
||||
./mpv.nix
|
||||
./nextcloud.nix
|
||||
./matrix.nix
|
||||
./obs-studio.nix
|
||||
./orcaslicer.nix
|
||||
./prismlauncher.nix
|
||||
./shadps4.nix
|
||||
./slack.nix
|
||||
./vicinae.nix
|
||||
./vlc.nix
|
||||
./wezterm.nix
|
||||
./zathura.nix
|
||||
./zed.nix
|
||||
./zen.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -3,13 +3,13 @@
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
(pkgs.discord.override {
|
||||
withOpenASAR = true;
|
||||
withVencord = true;
|
||||
})
|
||||
# pkgs.vesktop
|
||||
# pkgs.discord-canary
|
||||
# pkgs.discord-ptb
|
||||
];
|
||||
# home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
# (pkgs.discord.override {
|
||||
# withOpenASAR = true;
|
||||
# withVencord = true;
|
||||
# })
|
||||
# # pkgs.vesktop
|
||||
# # pkgs.discord-canary
|
||||
# # pkgs.discord-ptb
|
||||
# ];
|
||||
}
|
||||
|
||||
@@ -8,11 +8,8 @@
|
||||
stylix.targets.kitty.enable = false;
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
# enable = false;
|
||||
font = {
|
||||
# name = "FiraCode Nerd Font Mono";
|
||||
name = "Hasklug Nerd Font Mono";
|
||||
# name = "Monaspace Krypton Var Light";
|
||||
size = lib.mkForce 13;
|
||||
};
|
||||
settings = {
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
}: {
|
||||
home.packages = lib.optionals (device.is "ryu") [
|
||||
pkgs.fluffychat
|
||||
pkgs.fractal
|
||||
pkgs.element-desktop
|
||||
# pkgs.quaternion
|
||||
];
|
||||
}
|
||||
|
||||
8
home/apps/moonlight.nix
Normal file
8
home/apps/moonlight.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
lib,
|
||||
pkgs,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals (device.name == "ryu") [pkgs.moonlight-qt];
|
||||
}
|
||||
@@ -8,20 +8,20 @@
|
||||
loop-playlist = "inf";
|
||||
};
|
||||
profiles = {
|
||||
hdr = {
|
||||
vo = "gpu-next";
|
||||
gpu-api = "vulkan";
|
||||
hdr-compute-peak = "yes";
|
||||
hdr-peak-detect = "yes";
|
||||
target-peak = 400;
|
||||
target-prim = "bt.2020";
|
||||
target-trc = "pq";
|
||||
inverse-tone-mapping = "yes";
|
||||
tone-mapping = "spline";
|
||||
tone-mapping-mode = "auto";
|
||||
target-colorspace-hint = "auto";
|
||||
gamut-mapping = "desaturate";
|
||||
};
|
||||
# hdr = {
|
||||
# vo = "gpu-next";
|
||||
# gpu-api = "vulkan";
|
||||
# hdr-compute-peak = "yes";
|
||||
# hdr-peak-detect = "yes";
|
||||
# target-peak = 400;
|
||||
# target-prim = "bt.2020";
|
||||
# target-trc = "pq";
|
||||
# inverse-tone-mapping = "yes";
|
||||
# tone-mapping = "spline";
|
||||
# tone-mapping-mode = "auto";
|
||||
# target-colorspace-hint = "auto";
|
||||
# gamut-mapping = "desaturate";
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -12,7 +12,9 @@
|
||||
autoStart = true;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
pulseaudio
|
||||
];
|
||||
home.packages = with pkgs;
|
||||
lib.optionals (device.is "ryu") [
|
||||
# pulseaudio
|
||||
playerctl
|
||||
];
|
||||
}
|
||||
|
||||
@@ -2,26 +2,151 @@
|
||||
pkgs,
|
||||
inputs,
|
||||
device,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.zen-browser.homeModules.beta
|
||||
];
|
||||
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
|
||||
programs.zen-browser = {
|
||||
enable = device.isLinux;
|
||||
profiles.default = {
|
||||
enable = true;
|
||||
profiles.default = rec {
|
||||
containersForce = true;
|
||||
containers = {
|
||||
Personal = {
|
||||
color = "purple";
|
||||
icon = "fingerprint";
|
||||
id = 1;
|
||||
};
|
||||
Work = {
|
||||
color = "blue";
|
||||
icon = "briefcase";
|
||||
id = 2;
|
||||
};
|
||||
Shopping = {
|
||||
color = "yellow";
|
||||
icon = "dollar";
|
||||
id = 3;
|
||||
};
|
||||
};
|
||||
spacesForce = true;
|
||||
spaces = let
|
||||
containers = config.programs.zen-browser.profiles."default".containers;
|
||||
in {
|
||||
"Personal" = {
|
||||
id = "0b4dab19-9b39-4f2c-8ad1-0268d9fa2e49";
|
||||
icon = "👤";
|
||||
container = containers."Personal".id;
|
||||
position = 1000;
|
||||
};
|
||||
"Work" = {
|
||||
id = "8f687163-6b15-4c3c-885f-8ffe465b386f";
|
||||
icon = "💼";
|
||||
container = containers."Work".id;
|
||||
position = 2000;
|
||||
};
|
||||
"Shopping" = {
|
||||
id = "74f46a1b-cdd7-408c-98d7-382a2b11bd51";
|
||||
icon = "💸";
|
||||
container = containers."Shopping".id;
|
||||
position = 3000;
|
||||
};
|
||||
};
|
||||
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
privacy-badger
|
||||
violentmonkey
|
||||
tridactyl
|
||||
clearurls
|
||||
onepassword-password-manager
|
||||
ublock-origin
|
||||
floccus
|
||||
i-dont-care-about-cookies
|
||||
keepa
|
||||
onepassword-password-manager
|
||||
privacy-badger
|
||||
sponsorblock
|
||||
floccus
|
||||
tridactyl
|
||||
ublock-origin
|
||||
violentmonkey
|
||||
];
|
||||
search = {
|
||||
force = true;
|
||||
default = "ddg";
|
||||
engines = {
|
||||
mynixos = {
|
||||
name = "My NixOS";
|
||||
urls = [
|
||||
{
|
||||
template = "https://mynixos.com/search?q={searchTerms}";
|
||||
}
|
||||
];
|
||||
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = ["@nx"]; # Keep in mind that aliases defined here only work if they start with "@"
|
||||
};
|
||||
hm = {
|
||||
name = "Home Manager Options";
|
||||
urls = [
|
||||
{
|
||||
template = "https://home-manager-options.extranix.com/?query={searchTerms}&release=master";
|
||||
}
|
||||
];
|
||||
definedAliases = ["@hm"];
|
||||
};
|
||||
nv = {
|
||||
name = "NixVim";
|
||||
urls = [
|
||||
{
|
||||
template = "https://nix-community.github.io/nixvim/search";
|
||||
params = [
|
||||
{
|
||||
name = "query";
|
||||
value = "{searchTerms}";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
definedAliases = ["@nv"];
|
||||
};
|
||||
lib = {
|
||||
name = "Lib.rs";
|
||||
urls = [
|
||||
{
|
||||
template = "https://lib.rs/search";
|
||||
params = [
|
||||
{
|
||||
name = "q";
|
||||
value = "{searchTerms}";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
definedAliases = ["@lib"];
|
||||
};
|
||||
searchix = {
|
||||
name = "Searchix";
|
||||
urls = [
|
||||
{
|
||||
template = "https://searchix.ovh/?query={searchTerms}";
|
||||
}
|
||||
];
|
||||
definedAliases = ["sx"];
|
||||
};
|
||||
};
|
||||
};
|
||||
pins = {
|
||||
dashboard = {
|
||||
id = "d163f090-67b7-47d2-8f76-7d638b9f742b";
|
||||
workspace = spaces.Personal.id;
|
||||
url = "https://dashboard.darksailor.dev";
|
||||
isEssential = true;
|
||||
position = 101;
|
||||
};
|
||||
github = {
|
||||
id = "db2f3e36-9279-4b8d-8b5d-52a90f34ea0d";
|
||||
workspace = spaces.Personal.id;
|
||||
url = "https://github.com";
|
||||
isEssential = true;
|
||||
position = 102;
|
||||
};
|
||||
};
|
||||
pinsForce = true;
|
||||
};
|
||||
nativeMessagingHosts = [pkgs.tridactyl-native];
|
||||
policies = {
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
home-manager = {
|
||||
enable = true;
|
||||
};
|
||||
man.generateCaches = true;
|
||||
};
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
17
home/programs/calendar.nix
Normal file
17
home/programs/calendar.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{pkgs, ...}: {
|
||||
programs.khal = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default = {
|
||||
# default_calendar = "fastmail";
|
||||
};
|
||||
view = {
|
||||
agenda_event_format = "{calendar-color}{cancelled}{start-end-time-style} {title}{repeat-symbol}{reset}";
|
||||
};
|
||||
};
|
||||
};
|
||||
programs.qcal.enable = true;
|
||||
programs.vdirsyncer.enable = true;
|
||||
services.vdirsyncer.enable = true;
|
||||
accounts.calendar.accounts.fastmail.qcal.enable = true;
|
||||
}
|
||||
@@ -1,13 +1,8 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
{...}: {
|
||||
programs.
|
||||
carapace = {
|
||||
enable = false;
|
||||
enableFishIntegration = true;
|
||||
enableFishIntegration = false;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
cratesNix,
|
||||
...
|
||||
}: let
|
||||
cargo-credential-1password = cratesNix.buildCrate "cargo-credential-1password" {};
|
||||
cargo-credential-1password = cratesNix.buildCrate "cargo-credential-1password" {
|
||||
meta.mainProgram = "cargo-credential-1password";
|
||||
};
|
||||
in
|
||||
lib.mkIf (!device.isServer) {
|
||||
home.file.".cargo/config.toml".text =
|
||||
@@ -13,6 +15,7 @@ in
|
||||
[alias]
|
||||
lldb = ["with", "rust-lldb", "--"]
|
||||
t = ["nextest", "run"]
|
||||
pkgs = ["metadata", "--no-deps", "--format-version", "1"]
|
||||
|
||||
[net]
|
||||
git-fetch-with-cli = true
|
||||
|
||||
1
home/programs/codex.nix
Normal file
1
home/programs/codex.nix
Normal file
@@ -0,0 +1 @@
|
||||
{pkgs, ...}: {home.packages = [pkgs.codex];}
|
||||
@@ -7,6 +7,7 @@
|
||||
# ./bluetui.nix
|
||||
# ./goread.nix
|
||||
# ./helix.nix
|
||||
# ./iamb.nix
|
||||
# ./magika.nix
|
||||
# ./mpd.nix
|
||||
# ./mpris-scrobbler.nix
|
||||
@@ -19,6 +20,7 @@
|
||||
# ./template.nix
|
||||
# ./tuifeed.nix
|
||||
# ./xh.nix
|
||||
# ./yt-dlp.nix
|
||||
# ./zellij.nix
|
||||
|
||||
../../modules
|
||||
@@ -28,6 +30,7 @@
|
||||
./alejandra.nix
|
||||
./aria2.nix
|
||||
./ast-grep.nix
|
||||
./attic.nix
|
||||
./atuin.nix
|
||||
./bat.nix
|
||||
./binwalk.nix
|
||||
@@ -35,8 +38,11 @@
|
||||
./bottom.nix
|
||||
./btop.nix
|
||||
./cachix.nix
|
||||
./calendar.nix
|
||||
./carapace.nix
|
||||
./cargo.nix
|
||||
./cfcli.nix
|
||||
./codex.nix
|
||||
./ddcbacklight.nix
|
||||
./deploy-rs.nix
|
||||
./direnv.nix
|
||||
@@ -55,11 +61,13 @@
|
||||
./himalaya.nix
|
||||
./hyprshade.nix
|
||||
./jq.nix
|
||||
./jujutsu.nix
|
||||
./just.nix
|
||||
./ncpamixer.nix
|
||||
./neomutt.nix
|
||||
./neovim.nix
|
||||
./nix-index.nix
|
||||
./nixify.nix
|
||||
./nushell.nix
|
||||
./omnix.nix
|
||||
./opencode.nix
|
||||
@@ -76,9 +84,7 @@
|
||||
./tmux.nix
|
||||
./uv.nix
|
||||
./yazi.nix
|
||||
./yt-dlp.nix
|
||||
./yq.nix
|
||||
./zoxide.nix
|
||||
./attic.nix
|
||||
./cfcli.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1 +1,8 @@
|
||||
{pkgs, ...}: {home.packages = [pkgs.deploy-rs.deploy-rs];}
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals (device.is "ryu") [pkgs.deploy-rs.deploy-rs];
|
||||
}
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
j = "just --choose";
|
||||
# t = "zellij a -c --index 0";
|
||||
t = "tmux";
|
||||
neorg = "nvim -c ':Neorg index'";
|
||||
};
|
||||
shellAliases = {
|
||||
g = "git";
|
||||
@@ -33,7 +34,7 @@
|
||||
'';
|
||||
# ${pkgs.spotify-player}/bin/spotify_player generate fish | source
|
||||
interactiveShellInit = ''
|
||||
if test -n "$TMUX"; ${lib.getExe pkgs.fastfetch} --logo-type sixel; else ${lib.getExe pkgs.fastfetch}; end
|
||||
if test -n "$TMUX"; ${lib.getExe pkgs.fastfetch} --logo-type kitty-icat; else ${lib.getExe pkgs.fastfetch}; end
|
||||
# ${pkgs.nb}/bin/nb todo undone
|
||||
${lib.optionalString (device.isLinux && !device.isNix) "source /etc/profile.d/nix-daemon.fish"}
|
||||
${lib.optionalString (device.is "ryu") ''
|
||||
@@ -43,6 +44,16 @@
|
||||
''}
|
||||
'';
|
||||
};
|
||||
home.shell.enableFishIntegration = true;
|
||||
|
||||
# programs.bash = {
|
||||
# enable = true;
|
||||
# initExtra = ''
|
||||
# if [[ $- == *i* && -z "$FISH_VERSION" ]]; then
|
||||
# ${lib.getExe pkgs.fish}
|
||||
# fi
|
||||
# '';
|
||||
# };
|
||||
}
|
||||
// lib.optionalAttrs (!(device.is "tsuba")) {
|
||||
stylix.targets.fish.enable = false;
|
||||
|
||||
3
home/programs/iamb.nix
Normal file
3
home/programs/iamb.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
home.packages = [pkgs.iamb];
|
||||
}
|
||||
1
home/programs/jujutsu.nix
Normal file
1
home/programs/jujutsu.nix
Normal file
@@ -0,0 +1 @@
|
||||
{pkgs, ...}: {home.packages = [pkgs.jujutsu];}
|
||||
@@ -1,4 +1,9 @@
|
||||
{pkgs, ...}: {
|
||||
{pkgs, ...}: let
|
||||
theme = builtins.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/catppuccin/neomutt/refs/heads/main/neomuttrc";
|
||||
sha256 = "sha256:1q086p5maqwxa4gh6z8g7h3nfavdmkbql025ibdhglpz46hsq0hs";
|
||||
};
|
||||
in {
|
||||
programs.neomutt = {
|
||||
enable = true;
|
||||
vimKeys = true;
|
||||
@@ -6,6 +11,9 @@
|
||||
sidebar = {
|
||||
enable = true;
|
||||
};
|
||||
extraConfig = ''
|
||||
source ${theme}
|
||||
'';
|
||||
};
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
@@ -17,4 +25,38 @@
|
||||
enable = true;
|
||||
neomutt.enable = true;
|
||||
};
|
||||
services.imapnotify = {
|
||||
enable = true;
|
||||
path = [pkgs.coreutils pkgs.isync pkgs.libnotify];
|
||||
};
|
||||
accounts.email.accounts.fastmail.imapnotify = {
|
||||
enable = true;
|
||||
boxes = ["Inbox"];
|
||||
onNotify = "${pkgs.writeShellScript "mbsync-notify" ''
|
||||
${pkgs.isync}/bin/mbsync $1
|
||||
${pkgs.libnotify}/bin/notify-send "New Mail" "New email in $1"
|
||||
''} %s";
|
||||
};
|
||||
programs.mbsync.enable = true;
|
||||
services.mbsync.enable = pkgs.stdenv.isLinux;
|
||||
|
||||
# launchd.agents.mbsync = {
|
||||
# enable = true;
|
||||
# config = {
|
||||
# # A label for the service
|
||||
# Label = "dev.darksailor.atuin-daemon";
|
||||
# # The command to run
|
||||
# ProgramArguments = [
|
||||
# "${pkgs.atuin}/bin/atuin"
|
||||
# "daemon"
|
||||
# ];
|
||||
# # Run the service when you log in
|
||||
# RunAtLoad = true;
|
||||
# # Keep the process alive, or restart if it dies
|
||||
# KeepAlive = true;
|
||||
# # Log files
|
||||
# StandardOutPath = "${device.home}/Library/Logs/atuin-daemon.log";
|
||||
# StandardErrorPath = "${device.home}/Library/Logs/atuin-daemon.error.log";
|
||||
# };
|
||||
# };
|
||||
}
|
||||
|
||||
9
home/programs/nixify.nix
Normal file
9
home/programs/nixify.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
home.packages = [
|
||||
inputs.nixify.packages.${pkgs.system}.default
|
||||
];
|
||||
}
|
||||
@@ -26,4 +26,5 @@
|
||||
}
|
||||
'';
|
||||
};
|
||||
home.shell.enableNushellIntegration = true;
|
||||
}
|
||||
|
||||
@@ -6,5 +6,20 @@
|
||||
lib.optionalAttrs (device.is "ryu" || device.is "kuro") {
|
||||
programs.opencode = {
|
||||
enable = true;
|
||||
settings.provider = {
|
||||
ollama = {
|
||||
models = {
|
||||
"glm-4.7-flash" = {
|
||||
# "_launch" = true;
|
||||
name = "glm-4.7-flash";
|
||||
};
|
||||
};
|
||||
name = "Ollama (local)";
|
||||
npm = "@ai-sdk/openai-compatible";
|
||||
options = {
|
||||
baseURL = "https://ollama.darksailor.dev/v1";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -16,11 +16,6 @@
|
||||
user = "git";
|
||||
host = "github.com";
|
||||
};
|
||||
# mirai = {
|
||||
# user = "fs0c131y";
|
||||
# hostname = "mirai.darksailor.dev";
|
||||
# forwardAgent = true;
|
||||
# };
|
||||
tako = {
|
||||
user = "servius";
|
||||
hostname = "tako.darksailor.dev";
|
||||
|
||||
@@ -17,5 +17,6 @@
|
||||
cache_dir = config.home.homeDirectory + "/.cache/yazi/previews";
|
||||
};
|
||||
};
|
||||
shellWrapperName = "yy";
|
||||
};
|
||||
}
|
||||
|
||||
1
home/programs/yq.nix
Normal file
1
home/programs/yq.nix
Normal file
@@ -0,0 +1 @@
|
||||
{pkgs, ...}: {home.packages = [pkgs.yq];}
|
||||
@@ -36,11 +36,11 @@ in {
|
||||
pkgs.writeShellApplication {
|
||||
name = "git-install-prepare-commit-msg";
|
||||
text = ''
|
||||
cp ${../scripts/prepare-commit-msg} .git/hooks/prepare-commit-msg
|
||||
ln -sf ${../scripts/prepare-commit-msg} .git/hooks/prepare-commit-msg
|
||||
'';
|
||||
}
|
||||
)
|
||||
(mkScript ../scripts/yt-dlp.sh (with pkgs; [yt-dlp]))
|
||||
(mkScript ../scripts/autossh.sh (with pkgs; [autossh openssh]))
|
||||
# (mkScript ../scripts/yt-dlp.sh (with pkgs; [yt-dlp]))
|
||||
# (mkScript ../scripts/autossh.sh (with pkgs; [autossh openssh]))
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
./gtk.nix
|
||||
./gui.nix
|
||||
./hyprland.nix
|
||||
./hyprmon.nix
|
||||
./hyprpaper.nix
|
||||
./ironbar
|
||||
./kdeconnect.nix
|
||||
./remmina.nix
|
||||
# ./ollama.nix
|
||||
./swaync.nix
|
||||
./swayosd.nix
|
||||
./kdeconnect.nix
|
||||
./gtk.nix
|
||||
# ./anyrun.nix
|
||||
./ironbar
|
||||
./gui.nix
|
||||
# ./eww.nix
|
||||
./xdg.nix
|
||||
./hyprmon.nix
|
||||
./hyprland.nix
|
||||
./hyprpaper.nix
|
||||
./remmina.nix
|
||||
./ironclaw.nix
|
||||
# ./anyrun.nix
|
||||
# ./eww.nix
|
||||
# ./wallpaperengine.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
device,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
# lib.optionalAttrs device.isNix
|
||||
@@ -31,6 +32,8 @@
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = device.is "ryu";
|
||||
systemd.enable = true;
|
||||
package = pkgs.hyprland;
|
||||
portalPackage = pkgs.xdph;
|
||||
|
||||
settings = {
|
||||
# source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf";
|
||||
@@ -172,7 +175,7 @@
|
||||
|
||||
exec-once = [
|
||||
# "${pkgs.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1"
|
||||
"${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1"
|
||||
"${pkgs.mate-polkit}/libexec/polkit-mate-authentication-agent-1"
|
||||
# "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"
|
||||
# "${pkgs.swww}/bin/swww init; swww img ~/.local/share/dotfiles/images/wallpaper.jpg"
|
||||
# "${pkgs.ironbar}/bin/ironbar"
|
||||
@@ -203,7 +206,7 @@
|
||||
"$mainMod, d, exec, ${lib.getExe pkgs.vicinae} toggle"
|
||||
"$mainMod, Space, exec, ${lib.getExe pkgs.vicinae} toggle"
|
||||
"$mainMod, p, pseudo, # dwindle"
|
||||
"$mainMod, v, togglesplit,"
|
||||
"$mainMod, v, layoutmsg, togglesplit"
|
||||
"$mainMod, a, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
|
||||
"$mainMod, Tab, cyclenext"
|
||||
# Audio
|
||||
|
||||
@@ -8,8 +8,10 @@
|
||||
wallpapers = import ../../utils/wallhaven.nix {inherit pkgs;};
|
||||
nextcloudWallpapers = name: config.home.homeDirectory + "/Nextcloud/Wallpapers/" + name;
|
||||
# silksongFleas = nextcloudWallpapers "silksong-fleas.jpg";
|
||||
bocchiVertical = nextcloudWallpapers "bocchi-vertical.jpg";
|
||||
silksongShadeLord = nextcloudWallpapers "silksong-shadelord.jpg";
|
||||
|
||||
# The artist https://www.bilibili.com/video/BV1s44y1S7MM/
|
||||
bocchiVertical = nextcloudWallpapers "bocchi-guitar.jpg";
|
||||
frieren = nextcloudWallpapers "frieren.png";
|
||||
in {
|
||||
enable = device.is "ryu";
|
||||
settings = {
|
||||
@@ -17,12 +19,12 @@
|
||||
wallpaper = [
|
||||
{
|
||||
monitor = device.monitors.primary;
|
||||
path = silksongShadeLord;
|
||||
path = wallpapers.moon;
|
||||
fit_mode = "cover";
|
||||
}
|
||||
{
|
||||
monitor = device.monitors.secondary;
|
||||
path = wallpapers.frieren_3;
|
||||
path = frieren;
|
||||
fit_mode = "cover";
|
||||
}
|
||||
{
|
||||
|
||||
12
home/services/ironclaw.nix
Normal file
12
home/services/ironclaw.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
home.packages =
|
||||
lib.optionals (device.is "ryu")
|
||||
[
|
||||
pkgs.ironclaw
|
||||
];
|
||||
}
|
||||
7
home/services/ollama.nix
Normal file
7
home/services/ollama.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
pkgs,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
services.ollama.enable = device.is "shiro";
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
xdg.portal = {
|
||||
@@ -10,10 +11,9 @@
|
||||
hyprland.default = ["hyprland"];
|
||||
common.default = ["*" "hyprland"];
|
||||
};
|
||||
extraPortals = with pkgs; [
|
||||
kdePackages.xdg-desktop-portal-kde
|
||||
xdg-desktop-portal-hyprland
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
};
|
||||
}
|
||||
# // lib.optionalAttrs (device.is "ryu") {
|
||||
# environment.pathsToLink = ["/share/xdg-desktop-portal" "/share/applications"];
|
||||
# }
|
||||
|
||||
|
||||
162
modules/nixos/affine.nix
Normal file
162
modules/nixos/affine.nix
Normal file
@@ -0,0 +1,162 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.services.affine;
|
||||
dbName = "affine";
|
||||
dbUser = "affine";
|
||||
in {
|
||||
options.services.affine = {
|
||||
enable = mkEnableOption "AFFiNE self-hosted workspace";
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 3010;
|
||||
description = "Port for the AFFiNE server to listen on";
|
||||
};
|
||||
|
||||
domain = mkOption {
|
||||
type = types.str;
|
||||
description = "Public domain for AFFiNE (e.g. notes.darksailor.dev)";
|
||||
};
|
||||
|
||||
imageTag = mkOption {
|
||||
type = types.str;
|
||||
default = "stable";
|
||||
description = "Docker image tag for AFFiNE (stable, beta, canary)";
|
||||
};
|
||||
|
||||
dataDir = mkOption {
|
||||
type = types.str;
|
||||
default = "/var/lib/affine";
|
||||
description = "Base data directory for AFFiNE storage";
|
||||
};
|
||||
|
||||
environmentFiles = mkOption {
|
||||
type = types.listOf types.path;
|
||||
default = [];
|
||||
description = "Environment files containing secrets (DB password, etc.)";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
# Create data directories
|
||||
systemd.tmpfiles.rules = [
|
||||
"d ${cfg.dataDir} 0755 root root -"
|
||||
"d ${cfg.dataDir}/storage 0755 root root -"
|
||||
"d ${cfg.dataDir}/config 0755 root root -"
|
||||
"d ${cfg.dataDir}/postgres 0700 root root -"
|
||||
"d ${cfg.dataDir}/redis 0755 root root -"
|
||||
];
|
||||
|
||||
virtualisation.oci-containers = {
|
||||
backend = "docker";
|
||||
containers = {
|
||||
affine-postgres = {
|
||||
image = "pgvector/pgvector:pg16";
|
||||
volumes = [
|
||||
"${cfg.dataDir}/postgres:/var/lib/postgresql/data"
|
||||
];
|
||||
environment = {
|
||||
POSTGRES_USER = dbUser;
|
||||
POSTGRES_DB = dbName;
|
||||
POSTGRES_INITDB_ARGS = "--data-checksums";
|
||||
POSTGRES_HOST_AUTH_METHOD = "trust";
|
||||
};
|
||||
environmentFiles = cfg.environmentFiles;
|
||||
extraOptions = [
|
||||
"--health-cmd=pg_isready -U ${dbUser} -d ${dbName}"
|
||||
"--health-interval=10s"
|
||||
"--health-timeout=5s"
|
||||
"--health-retries=5"
|
||||
];
|
||||
networks = ["affine-net"];
|
||||
};
|
||||
|
||||
affine-redis = {
|
||||
image = "redis:7";
|
||||
volumes = [
|
||||
"${cfg.dataDir}/redis:/data"
|
||||
];
|
||||
networks = ["affine-net"];
|
||||
extraOptions = [
|
||||
"--health-cmd=redis-cli --raw incr ping"
|
||||
"--health-interval=10s"
|
||||
"--health-timeout=5s"
|
||||
"--health-retries=5"
|
||||
];
|
||||
};
|
||||
|
||||
affine = {
|
||||
image = "ghcr.io/toeverything/affine:${cfg.imageTag}";
|
||||
ports = ["127.0.0.1:${toString cfg.port}:3010"];
|
||||
dependsOn = [
|
||||
"affine-postgres"
|
||||
"affine-redis"
|
||||
"affine-migration"
|
||||
];
|
||||
volumes = [
|
||||
"${cfg.dataDir}/storage:/root/.affine/storage"
|
||||
"${cfg.dataDir}/config:/root/.affine/config"
|
||||
];
|
||||
environment = {
|
||||
AFFINE_SERVER_PORT = "3010";
|
||||
AFFINE_SERVER_HOST = cfg.domain;
|
||||
AFFINE_SERVER_HTTPS = "true";
|
||||
AFFINE_SERVER_EXTERNAL_URL = "https://${cfg.domain}";
|
||||
REDIS_SERVER_HOST = "affine-redis";
|
||||
DATABASE_URL = "postgresql://${dbUser}:$${AFFINE_DB_PASSWORD:-affine}@affine-postgres:5432/${dbName}";
|
||||
AFFINE_INDEXER_ENABLED = "false";
|
||||
};
|
||||
environmentFiles = cfg.environmentFiles;
|
||||
networks = ["affine-net"];
|
||||
};
|
||||
|
||||
affine-migration = {
|
||||
image = "ghcr.io/toeverything/affine:${cfg.imageTag}";
|
||||
dependsOn = [
|
||||
"affine-postgres"
|
||||
"affine-redis"
|
||||
];
|
||||
volumes = [
|
||||
"${cfg.dataDir}/storage:/root/.affine/storage"
|
||||
"${cfg.dataDir}/config:/root/.affine/config"
|
||||
];
|
||||
cmd = ["sh" "-c" "node ./scripts/self-host-predeploy.js"];
|
||||
environment = {
|
||||
REDIS_SERVER_HOST = "affine-redis";
|
||||
DATABASE_URL = "postgresql://${dbUser}:$${AFFINE_DB_PASSWORD:-affine}@affine-postgres:5432/${dbName}";
|
||||
AFFINE_INDEXER_ENABLED = "false";
|
||||
};
|
||||
environmentFiles = cfg.environmentFiles;
|
||||
networks = ["affine-net"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Create the Docker network
|
||||
# systemd.services.affine-network = {
|
||||
# description = "Create AFFiNE Docker network";
|
||||
# after = ["docker.service"];
|
||||
# wantedBy = ["multi-user.target"];
|
||||
# serviceConfig = {
|
||||
# Type = "oneshot";
|
||||
# RemainAfterExit = true;
|
||||
# # ExecStart = "${config.virtualisation.docker.package}/bin/docker network create affine-net";
|
||||
# # ExecStop = "${config.virtualisation.docker.package}/bin/docker network remove affine-net";
|
||||
# };
|
||||
# };
|
||||
#
|
||||
# Ensure containers start after the network is created
|
||||
# systemd.services.docker-affine.after = ["affine-network.service"];
|
||||
# systemd.services.docker-affine.requires = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-postgres.after = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-postgres.requires = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-redis.after = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-redis.requires = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-migration.after = ["affine-network.service"];
|
||||
# systemd.services.docker-affine-migration.requires = ["affine-network.service"];
|
||||
};
|
||||
}
|
||||
@@ -1,50 +1,19 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.nix.substituters;
|
||||
in {
|
||||
options.nix.substituters = {
|
||||
enableCuda = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Enable NixOS CUDA cache";
|
||||
};
|
||||
|
||||
enableLlamaCpp = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Enable llama-cpp cache";
|
||||
};
|
||||
};
|
||||
|
||||
{...}: {
|
||||
config = {
|
||||
nix.settings = {
|
||||
trusted-substituters =
|
||||
[
|
||||
"https://nix-community.cachix.org"
|
||||
"https://nixos-raspberrypi.cachix.org"
|
||||
]
|
||||
++ optionals cfg.enableLlamaCpp [
|
||||
"https://llama-cpp.cachix.org"
|
||||
]
|
||||
++ optionals cfg.enableCuda [
|
||||
"https://cache.nixos-cuda.org"
|
||||
];
|
||||
trusted-substituters = [
|
||||
"https://nix-community.cachix.org"
|
||||
"https://nixos-raspberrypi.cachix.org"
|
||||
"https://llama-cpp.cachix.org"
|
||||
"https://cache.nixos-cuda.org"
|
||||
];
|
||||
|
||||
trusted-public-keys =
|
||||
[
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"nixos-raspberrypi.cachix.org-1:4iMO9LXa8BqhU+Rpg6LQKiGa2lsNh/j2oiYLNOQ5sPI="
|
||||
]
|
||||
++ optionals cfg.enableLlamaCpp [
|
||||
"llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc="
|
||||
]
|
||||
++ optionals cfg.enableCuda [
|
||||
"cache.nixos-cuda.org:74DUi4Ye579gUqzH4ziL9IyiJBlDpMRn9MBN8oNan9M="
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"nixos-raspberrypi.cachix.org-1:4iMO9LXa8BqhU+Rpg6LQKiGa2lsNh/j2oiYLNOQ5sPI="
|
||||
"llama-cpp.cachix.org-1:H75X+w83wUKTIPSO1KWy9ADUrzThyGs8P5tmAbkWhQc="
|
||||
"cache.nixos-cuda.org:74DUi4Ye579gUqzH4ziL9IyiJBlDpMRn9MBN8oNan9M="
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -289,7 +289,7 @@ in {
|
||||
"core.keybinds" = {
|
||||
config = {
|
||||
default_keybinds = true;
|
||||
neorg_leader = "<C-m>";
|
||||
neorg_leader = "<C-i>";
|
||||
};
|
||||
};
|
||||
"core.integrations.treesitter" = {
|
||||
@@ -620,6 +620,21 @@ in {
|
||||
};
|
||||
sources = {
|
||||
cmdline = [];
|
||||
# default =
|
||||
# rawLua
|
||||
# /*
|
||||
# lua
|
||||
# */
|
||||
# ''
|
||||
# function(ctx)
|
||||
# local success, node = pcall(vim.treesitter.get_node)
|
||||
# if success and node and vim.tbl_contains({ 'comment', 'line_comment', 'block_comment' }, node:type()) then
|
||||
# return { 'buffer' }
|
||||
# else
|
||||
# return { 'git', 'lsp', 'path', 'snippets', 'buffer', 'dictionary', 'ripgrep', 'tmux' }
|
||||
# end
|
||||
# end
|
||||
# '';
|
||||
default = [
|
||||
"git"
|
||||
"lsp"
|
||||
@@ -628,6 +643,7 @@ in {
|
||||
"path"
|
||||
"buffer"
|
||||
"ripgrep"
|
||||
# "tmux"
|
||||
];
|
||||
providers = {
|
||||
buffer = {
|
||||
@@ -639,23 +655,30 @@ in {
|
||||
path = {};
|
||||
dictionary = {
|
||||
module = "blink-cmp-dictionary";
|
||||
name = "Dict";
|
||||
name = "dict";
|
||||
min_keyword_length = 3;
|
||||
opts = {
|
||||
};
|
||||
};
|
||||
git = {
|
||||
module = "blink-cmp-git";
|
||||
name = "Git";
|
||||
name = "git";
|
||||
opts = {
|
||||
# -- options for the blink-cmp-git
|
||||
};
|
||||
};
|
||||
ripgrep = {
|
||||
module = "blink-ripgrep";
|
||||
name = "Ripgrep";
|
||||
name = "ripgrep";
|
||||
opts = {};
|
||||
};
|
||||
# tmux = {
|
||||
# module = "blink-cmp-tmux";
|
||||
# name = "tmux";
|
||||
# opts = {
|
||||
# triggered_only = false;
|
||||
# };
|
||||
# };
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -663,8 +686,9 @@ in {
|
||||
blink-ripgrep.enable = true;
|
||||
blink-cmp-git.enable = true;
|
||||
blink-cmp-dictionary.enable = true;
|
||||
blink-cmp-copilot.enable = true;
|
||||
# blink-cmp-copilot.enable = true;
|
||||
blink-cmp-spell.enable = true;
|
||||
blink-cmp-tmux.enable = true;
|
||||
blink-compat = {
|
||||
enable = true;
|
||||
settings.impersonate_nvim_cmp = true;
|
||||
|
||||
@@ -42,8 +42,8 @@
|
||||
};
|
||||
};
|
||||
in [
|
||||
inputs.nno.overlays.default
|
||||
inputs.nixvim.overlays.default
|
||||
vimPlugins
|
||||
inputs.nno.overlays.default
|
||||
tree-sitter-grammars
|
||||
vimPlugins
|
||||
]
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
inputs.stylix.nixosModules.stylix
|
||||
inputs.headplane.nixosModules.headplane
|
||||
inputs.tangled-core.nixosModules.knot
|
||||
|
||||
./${device.name}/configuration.nix
|
||||
../home/module.nix
|
||||
|
||||
@@ -4,4 +4,5 @@
|
||||
documentation.dev.enable = true;
|
||||
documentation.doc.enable = true;
|
||||
documentation.nixos.enable = true;
|
||||
documentation.man.cache.enable = true;
|
||||
}
|
||||
|
||||
3
nixos/ryu/apps/crosspipe.nix
Normal file
3
nixos/ryu/apps/crosspipe.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [crosspipe];
|
||||
}
|
||||
@@ -7,6 +7,11 @@
|
||||
# ./alvr.nix
|
||||
./easyeffects.nix
|
||||
./vr.nix
|
||||
./helvum.nix
|
||||
./crosspipe.nix
|
||||
# ./wine.nix
|
||||
# ./virt.nix
|
||||
./gparted.nix
|
||||
./nvtop.nix
|
||||
# ./qpwgraph.nix
|
||||
];
|
||||
}
|
||||
|
||||
3
nixos/ryu/apps/gparted.nix
Normal file
3
nixos/ryu/apps/gparted.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [gparted];
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [helvum];
|
||||
}
|
||||
3
nixos/ryu/apps/nvtop.nix
Normal file
3
nixos/ryu/apps/nvtop.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [nvtopPackages.nvidia];
|
||||
}
|
||||
3
nixos/ryu/apps/qpwgraph.nix
Normal file
3
nixos/ryu/apps/qpwgraph.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [qpwgraph];
|
||||
}
|
||||
6
nixos/ryu/apps/virt.nix
Normal file
6
nixos/ryu/apps/virt.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
virt-manager
|
||||
quickemu
|
||||
];
|
||||
}
|
||||
7
nixos/ryu/apps/wine.nix
Normal file
7
nixos/ryu/apps/wine.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
wine-wayland
|
||||
winetricks
|
||||
wineWowPackages.waylandFull
|
||||
];
|
||||
}
|
||||
@@ -2,6 +2,8 @@
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
@@ -21,15 +23,6 @@
|
||||
tctiEnvironment.enable = true;
|
||||
};
|
||||
|
||||
programs = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
withUWSM = true;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
uwsm.enable = true;
|
||||
};
|
||||
|
||||
systemd.services.NetworkManager-wait-online.enable = lib.mkForce false;
|
||||
# systemd.tmpfiles.rules = [
|
||||
# "L+ /etc/gdm/.config/monitors.xml - - - - ${./monitors.xml}"
|
||||
@@ -47,6 +40,8 @@
|
||||
auto-optimise-store = true;
|
||||
extra-experimental-features = "nix-command flakes auto-allocate-uids";
|
||||
trusted-users = [device.user];
|
||||
extra-sandbox-paths = [config.programs.ccache.cacheDir];
|
||||
download-buffer-size = 524288000;
|
||||
};
|
||||
extraOptions = ''
|
||||
build-users-group = nixbld
|
||||
@@ -65,11 +60,6 @@
|
||||
# ../../builders/tsuba.nix
|
||||
];
|
||||
distributedBuilds = true;
|
||||
# Enable CUDA and llama-cpp caches
|
||||
substituters = {
|
||||
enableCuda = true;
|
||||
enableLlamaCpp = true;
|
||||
};
|
||||
};
|
||||
|
||||
users.users.${device.user} = {
|
||||
@@ -291,42 +281,6 @@
|
||||
fonts.fontconfig.enable = true;
|
||||
fonts.fontDir.enable = true;
|
||||
environment = {
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
systemPackages = with pkgs; [
|
||||
v4l-utils
|
||||
polychromatic
|
||||
openrazer-daemon
|
||||
cudatoolkit
|
||||
# Wine
|
||||
wine-wayland
|
||||
winetricks
|
||||
wineWowPackages.waylandFull
|
||||
|
||||
virt-manager
|
||||
gparted
|
||||
nvtopPackages.nvidia
|
||||
quickemu
|
||||
# (nixvim.makeNixvim (import ../../neovim))
|
||||
qpwgraph
|
||||
hyprland
|
||||
xorg.xhost
|
||||
foot
|
||||
git
|
||||
fish
|
||||
nushell
|
||||
# (pkgs.wrapFirefox
|
||||
# (pkgs.firefox-unwrapped.override {pipewireSupport = true;})
|
||||
# {})
|
||||
gnumake
|
||||
python3
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.hasklug
|
||||
nerd-fonts.symbols-only
|
||||
monaspace
|
||||
ddcutil
|
||||
libnotify
|
||||
];
|
||||
sessionVariables = {
|
||||
WLR_NO_HARDWARE_CURSORS = "1";
|
||||
NIXOS_OZONE_WL = "1";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
./hytale.nix
|
||||
# ./hytale.nix
|
||||
];
|
||||
}
|
||||
|
||||
6
nixos/ryu/programs/ccache.nix
Normal file
6
nixos/ryu/programs/ccache.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{...}: {
|
||||
programs.ccache = {
|
||||
enable = true;
|
||||
packageNames = ["ollama" "orca-slicer" "opencv" "onnxruntime" "obs-studio" "llama-cpp"];
|
||||
};
|
||||
}
|
||||
3
nixos/ryu/programs/cuda.nix
Normal file
3
nixos/ryu/programs/cuda.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [cudatoolkit];
|
||||
}
|
||||
3
nixos/ryu/programs/ddcutil.nix
Normal file
3
nixos/ryu/programs/ddcutil.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [ddcutil];
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
./steam.nix
|
||||
./1password.nix
|
||||
./localsend.nix
|
||||
./appimage.nix
|
||||
# ./appimage.nix
|
||||
./obs-studio.nix
|
||||
./gnome-disks.nix
|
||||
./nix-ld.nix
|
||||
@@ -12,5 +12,16 @@
|
||||
./droidcam.nix
|
||||
./wireshark.nix
|
||||
./flatpak.nix
|
||||
./v4l-utils.nix
|
||||
./razer.nix
|
||||
./cuda.nix
|
||||
./fonts.nix
|
||||
./dev.nix
|
||||
./shells.nix
|
||||
./hyprland.nix
|
||||
./foot.nix
|
||||
./ddcutil.nix
|
||||
./libnotify.nix
|
||||
./fish.nix
|
||||
];
|
||||
}
|
||||
|
||||
7
nixos/ryu/programs/dev.nix
Normal file
7
nixos/ryu/programs/dev.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
gnumake
|
||||
python3
|
||||
];
|
||||
}
|
||||
7
nixos/ryu/programs/fish.nix
Normal file
7
nixos/ryu/programs/fish.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{...}: {
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
generateCompletions = true;
|
||||
};
|
||||
stylix.targets.fish.enable = false;
|
||||
}
|
||||
8
nixos/ryu/programs/fonts.nix
Normal file
8
nixos/ryu/programs/fonts.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.hasklug
|
||||
nerd-fonts.symbols-only
|
||||
monaspace
|
||||
];
|
||||
}
|
||||
3
nixos/ryu/programs/foot.nix
Normal file
3
nixos/ryu/programs/foot.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [foot];
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
pkgs,
|
||||
device,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.gamemode = {
|
||||
@@ -12,7 +13,7 @@
|
||||
custom = {
|
||||
start = let
|
||||
out = pkgs.writeScriptBin "gamemode-start" ''
|
||||
${pkgs.lmstudio}/bin/lms unload
|
||||
${lib.getExe pkgs.ollama} ps | tail +2 | cut -d' ' -f1 | xargs ${lib.getExe pkgs.ollama} stop
|
||||
${pkgs.libnotify}/bin/notify-send 'GameMode started'
|
||||
'';
|
||||
in "${out}/bin/gamemode-start";
|
||||
|
||||
19
nixos/ryu/programs/hyprland.nix
Normal file
19
nixos/ryu/programs/hyprland.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
xhost
|
||||
];
|
||||
programs = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
withUWSM = true;
|
||||
xwayland.enable = true;
|
||||
package = pkgs.hyprland;
|
||||
portalPackage = pkgs.xdph;
|
||||
};
|
||||
uwsm.enable = true;
|
||||
};
|
||||
}
|
||||
3
nixos/ryu/programs/libnotify.nix
Normal file
3
nixos/ryu/programs/libnotify.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [libnotify];
|
||||
}
|
||||
6
nixos/ryu/programs/razer.nix
Normal file
6
nixos/ryu/programs/razer.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
polychromatic
|
||||
openrazer-daemon
|
||||
];
|
||||
}
|
||||
6
nixos/ryu/programs/shells.nix
Normal file
6
nixos/ryu/programs/shells.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
fish
|
||||
nushell
|
||||
];
|
||||
}
|
||||
3
nixos/ryu/programs/v4l-utils.nix
Normal file
3
nixos/ryu/programs/v4l-utils.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [v4l-utils];
|
||||
}
|
||||
@@ -7,8 +7,5 @@
|
||||
enable = true;
|
||||
dumpcap.enable = true;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
wireshark-qt
|
||||
];
|
||||
users.users.${device.user}.extraGroups = ["wireshark"];
|
||||
}
|
||||
|
||||
@@ -130,11 +130,10 @@
|
||||
options = ["nofail"];
|
||||
};
|
||||
|
||||
# fileSystems."/volumes/windows-games" = {
|
||||
# device = "/dev/disk/by-partuuid/56359fb7-7d33-44d2-bebd-b0c53daeeb73";
|
||||
# fsType = "ntfs3";
|
||||
# options = ["nofail"];
|
||||
# };
|
||||
fileSystems."/var" = {
|
||||
device = "/dev/disk/by-uuid/ff874913-dc21-43f3-82f8-cdf45dd888f7";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{
|
||||
|
||||
@@ -57,9 +57,6 @@
|
||||
};
|
||||
package = pkgs.nixVersions.nix_2_32; # deploy-rs doesn't work with nix >= 2.32
|
||||
distributedBuilds = true;
|
||||
substituters = {
|
||||
enableCuda = true;
|
||||
};
|
||||
};
|
||||
|
||||
users.users.${device.user} = {
|
||||
|
||||
89
nixos/tako/services/affine.nix
Normal file
89
nixos/tako/services/affine.nix
Normal file
@@ -0,0 +1,89 @@
|
||||
{config, ...}: let
|
||||
domain = "notes.darksailor.dev";
|
||||
in {
|
||||
imports = [
|
||||
../../../modules/nixos/affine.nix
|
||||
];
|
||||
|
||||
# SOPS secrets
|
||||
sops = {
|
||||
secrets = {
|
||||
"affine/db_password" = {};
|
||||
"authelia/oidc/affine/client_id" = {
|
||||
owner = config.systemd.services.authelia-darksailor.serviceConfig.User;
|
||||
mode = "0440";
|
||||
restartUnits = ["authelia-darksailor.service"];
|
||||
};
|
||||
"authelia/oidc/affine/client_secret" = {
|
||||
owner = config.systemd.services.authelia-darksailor.serviceConfig.User;
|
||||
mode = "0440";
|
||||
restartUnits = ["authelia-darksailor.service"];
|
||||
};
|
||||
};
|
||||
templates."affine.env".content = ''
|
||||
AFFINE_DB_PASSWORD=${config.sops.placeholder."affine/db_password"}
|
||||
POSTGRES_PASSWORD=${config.sops.placeholder."affine/db_password"}
|
||||
AFFINE_SERVER_EXTERNAL_URL=https://${domain}
|
||||
'';
|
||||
};
|
||||
|
||||
# Enable AFFiNE service
|
||||
services.affine = {
|
||||
enable = true;
|
||||
inherit domain;
|
||||
environmentFiles = [
|
||||
config.sops.templates."affine.env".path
|
||||
];
|
||||
};
|
||||
|
||||
# Caddy reverse proxy with SSO forward auth
|
||||
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
||||
reverse_proxy localhost:${toString config.services.affine.port}
|
||||
'';
|
||||
|
||||
# Authelia access control rules
|
||||
services.authelia.instances.darksailor.settings = {
|
||||
access_control.rules = [
|
||||
{
|
||||
inherit domain;
|
||||
policy = "bypass";
|
||||
resources = [
|
||||
"^/api/(sync|awareness)([/?].*)?$"
|
||||
"^/socket\\.io([/?].*)?$"
|
||||
];
|
||||
}
|
||||
{
|
||||
inherit domain;
|
||||
policy = "one_factor";
|
||||
}
|
||||
];
|
||||
# OIDC client for AFFiNE
|
||||
identity_providers.oidc.clients = [
|
||||
{
|
||||
client_name = "AFFiNE: Darksailor";
|
||||
client_id = ''{{ secret "${config.sops.secrets."authelia/oidc/affine/client_id".path}" }}'';
|
||||
client_secret = ''{{ secret "${config.sops.secrets."authelia/oidc/affine/client_secret".path}" }}'';
|
||||
public = false;
|
||||
authorization_policy = "one_factor";
|
||||
require_pkce = false;
|
||||
redirect_uris = [
|
||||
"https://${domain}/oauth/callback"
|
||||
];
|
||||
scopes = [
|
||||
"openid"
|
||||
"email"
|
||||
"profile"
|
||||
];
|
||||
response_types = ["code"];
|
||||
grant_types = ["authorization_code"];
|
||||
userinfo_signed_response_alg = "none";
|
||||
token_endpoint_auth_method = "client_secret_post";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
# Ensure containers start after secrets are available
|
||||
systemd.services.docker-affine.after = ["sops-install-secrets.service"];
|
||||
systemd.services.docker-affine-migration.after = ["sops-install-secrets.service"];
|
||||
systemd.services.docker-affine-postgres.after = ["sops-install-secrets.service"];
|
||||
}
|
||||
@@ -1,31 +1,35 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
./attic.nix
|
||||
./atuin.nix
|
||||
./authelia.nix
|
||||
./caddy.nix
|
||||
./excalidraw.nix
|
||||
./fail2ban.nix
|
||||
./flaresolverr.nix
|
||||
./games
|
||||
./gitea.nix
|
||||
./homepage.nix
|
||||
./immich.nix
|
||||
./kellnr.nix
|
||||
./lldap.nix
|
||||
./llms.nix
|
||||
./matrix
|
||||
./monitoring.nix
|
||||
./navidrome.nix
|
||||
./nextcloud.nix
|
||||
./openssh.nix
|
||||
./prowlarr.nix
|
||||
./resolved.nix
|
||||
./searxng.nix
|
||||
./shitpost.nix
|
||||
./tailscale.nix
|
||||
./gitea.nix
|
||||
./knot.nix
|
||||
|
||||
./affine.nix
|
||||
./attic.nix
|
||||
./excalidraw.nix
|
||||
./flaresolverr.nix
|
||||
# ./games
|
||||
# ./headscale.nix
|
||||
./immich.nix
|
||||
./kellnr.nix
|
||||
./llms.nix
|
||||
./matrix
|
||||
./monitoring.nix
|
||||
# ./servius-website.nix
|
||||
# ./paperless.nix
|
||||
./prowlarr.nix
|
||||
# ./searxng.nix
|
||||
./shitpost.nix
|
||||
];
|
||||
services = {
|
||||
nix-serve = {
|
||||
|
||||
@@ -34,12 +34,12 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
# headplane = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# server.port = 42562;
|
||||
# };
|
||||
# };
|
||||
headplane = {
|
||||
enable = true;
|
||||
settings = {
|
||||
server.port = 42562;
|
||||
};
|
||||
};
|
||||
caddy = {
|
||||
virtualHosts."headscale.darksailor.dev".extraConfig = ''
|
||||
reverse_proxy localhost:${toString config.services.headplane.settings.server.port}
|
||||
|
||||
@@ -59,6 +59,14 @@
|
||||
siteMonitor = "https://deluge.tsuba.darksailor.dev";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Aria2" = {
|
||||
icon = "aria2.png";
|
||||
description = "Aria2: Download Manager";
|
||||
href = "https://aria2.tsuba.darksailor.dev";
|
||||
siteMonitor = "https://aria2.tsuba.darksailor.dev";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Home Assistant" = {
|
||||
icon = "home-assistant.png";
|
||||
@@ -198,19 +206,19 @@
|
||||
reverse_proxy localhost:${builtins.toString config.services.homepage-dashboard.listenPort}
|
||||
'';
|
||||
};
|
||||
# authelia = {
|
||||
# instances.darksailor = {
|
||||
# settings = {
|
||||
# access_control = {
|
||||
# rules = [
|
||||
# {
|
||||
# domain = "dashboard.darksailor.dev";
|
||||
# policy = "one_factor";
|
||||
# }
|
||||
# ];
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
authelia = {
|
||||
instances.darksailor = {
|
||||
settings = {
|
||||
access_control = {
|
||||
rules = [
|
||||
{
|
||||
domain = "dashboard.darksailor.dev";
|
||||
policy = "one_factor";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
31
nixos/tako/services/knot.nix
Normal file
31
nixos/tako/services/knot.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
config,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services.tangled.knot = {
|
||||
enable = true;
|
||||
package = inputs.tangled-core.packages.${pkgs.system}.knot;
|
||||
server = {
|
||||
hostname = "tangled.darksailor.dev";
|
||||
owner = "did:plc:tllyvpa5oxw6fwwhkj3kv6dr";
|
||||
listenAddr = "127.0.0.1:5969";
|
||||
};
|
||||
};
|
||||
|
||||
services.caddy.virtualHosts."tangled.darksailor.dev".extraConfig = ''
|
||||
reverse_proxy ${config.services.tangled.knot.server.listenAddr} {
|
||||
header_up Host {host}
|
||||
header_up X-Real-IP {remote}
|
||||
header_up X-Forwarded-For {remote}
|
||||
header_up X-Forwarded-Proto {scheme}
|
||||
}
|
||||
handle /events/* {
|
||||
reverse_proxy ${config.services.tangled.knot.server.listenAddr} {
|
||||
header_up X-Forwarded-For {remote}
|
||||
header_up Host {host}
|
||||
}
|
||||
}
|
||||
'';
|
||||
}
|
||||
66
nixos/tako/services/matrix/cinny.nix
Normal file
66
nixos/tako/services/matrix/cinny.nix
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
base_domain = "darksailor.dev";
|
||||
cinnyConfig = builtins.toJSON {
|
||||
defaultHomeserver = 0;
|
||||
homeserverList = ["darksailor.dev" "matrix.org"];
|
||||
allowCustomHomeservers = false;
|
||||
hashRouter = {
|
||||
enabled = true;
|
||||
basename = "/";
|
||||
};
|
||||
};
|
||||
cinnyConfigFile = pkgs.writeText "cinny-config.json" cinnyConfig;
|
||||
cinny = with pkgs;
|
||||
buildNpmPackage rec {
|
||||
pname = "cinny-unwrapped";
|
||||
version = "4.11.1";
|
||||
src = inputs.cinny;
|
||||
|
||||
nodejs = nodejs_22;
|
||||
|
||||
npmDepsHash = "sha256-27WFjb08p09aJRi0S2PvYq3bivEuG5+z2QhFahTSj4Q=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
pixman
|
||||
cairo
|
||||
pango
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [giflib];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
cp -r dist $out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
};
|
||||
in {
|
||||
services.caddy.virtualHosts = {
|
||||
"matrix.${base_domain}".extraConfig = ''
|
||||
handle /_matrix/* {
|
||||
reverse_proxy /_matrix/* localhost:${toString (builtins.elemAt config.services.matrix-tuwunel.settings.global.port 0)}
|
||||
}
|
||||
handle_path /config.json {
|
||||
file_server
|
||||
root ${cinnyConfigFile}
|
||||
}
|
||||
handle {
|
||||
root * ${cinny}
|
||||
try_files {path} /index.html
|
||||
file_server
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
{...}: {
|
||||
imports = [
|
||||
./tuwunel.nix
|
||||
# ./signal.nix // libolm deprecated
|
||||
./cinny.nix
|
||||
# ./signal.nix
|
||||
# ./discord.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -6,19 +6,8 @@
|
||||
port = 6167;
|
||||
base_domain = "darksailor.dev";
|
||||
client_id = "tuwunel";
|
||||
elementConfig = builtins.toJSON {
|
||||
default_server_config = {
|
||||
"m.homeserver" = {
|
||||
base_url = "https://matrix.${base_domain}";
|
||||
};
|
||||
};
|
||||
sso_redirect_options = {
|
||||
immediate = false;
|
||||
on_welcome_page = true;
|
||||
on_login_page = true;
|
||||
};
|
||||
};
|
||||
elementConfigFile = pkgs.writeText "element-config.json" elementConfig;
|
||||
rtc_domain = "matrix-rtc.${base_domain}";
|
||||
jwt_port = 8081;
|
||||
in {
|
||||
sops = {
|
||||
secrets."tuwunel/client_id" = {
|
||||
@@ -32,6 +21,11 @@ in {
|
||||
mode = "0440";
|
||||
};
|
||||
secrets."tuwunel/registration_token".owner = config.services.matrix-tuwunel.user;
|
||||
secrets."livekit/key_name" = {};
|
||||
secrets."livekit/key_secret" = {};
|
||||
templates."livekit-keys".content = ''
|
||||
${config.sops.placeholder."livekit/key_name"}: ${config.sops.placeholder."livekit/key_secret"}
|
||||
'';
|
||||
};
|
||||
services.matrix-tuwunel = {
|
||||
enable = true;
|
||||
@@ -56,31 +50,91 @@ in {
|
||||
well_known = {
|
||||
client = "https://matrix.${base_domain}";
|
||||
server = "matrix.${base_domain}:443";
|
||||
rtc_transports = [
|
||||
{
|
||||
type = "livekit";
|
||||
livekit_service_url = "https://${rtc_domain}";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
package = pkgs.matrix-tuwunel;
|
||||
};
|
||||
services.caddy.virtualHosts = {
|
||||
"matrix.${base_domain}".extraConfig = ''
|
||||
reverse_proxy /_matrix/* localhost:${toString port}
|
||||
handle_path /config.json {
|
||||
file_server
|
||||
root ${elementConfigFile}
|
||||
}
|
||||
root * ${pkgs.element-web}
|
||||
file_server
|
||||
'';
|
||||
# "matrix.${base_domain}".extraConfig = ''
|
||||
# handle /_matrix/* {
|
||||
# reverse_proxy /_matrix/* localhost:${toString port}
|
||||
# }
|
||||
# handle_path /config.json {
|
||||
# file_server
|
||||
# root ${cinnyConfigFile}
|
||||
# }
|
||||
# handle {
|
||||
# root * ${cinny}
|
||||
# try_files {path} /index.html
|
||||
# file_server
|
||||
# }
|
||||
# '';
|
||||
"${base_domain}".extraConfig = ''
|
||||
reverse_proxy /.well-known/* localhost:${toString port}
|
||||
'';
|
||||
# "matrix.${base_domain}:8448".extraConfig = ''
|
||||
# reverse_proxy /_matrix/* localhost:${toString port}
|
||||
# '';
|
||||
"${rtc_domain}".extraConfig = ''
|
||||
@jwt_service {
|
||||
path /sfu/get* /healthz*
|
||||
}
|
||||
handle @jwt_service {
|
||||
reverse_proxy localhost:${toString jwt_port}
|
||||
}
|
||||
handle {
|
||||
reverse_proxy localhost:${toString config.services.livekit.settings.port} {
|
||||
header_up Connection "upgrade"
|
||||
header_up Upgrade {http.request.header.Upgrade}
|
||||
}
|
||||
}
|
||||
'';
|
||||
};
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [8448 7881];
|
||||
allowedUDPPorts = [3478];
|
||||
allowedUDPPortRanges = [
|
||||
{
|
||||
from = 50300;
|
||||
to = 65535;
|
||||
}
|
||||
];
|
||||
};
|
||||
networking.firewall.allowedTCPPorts = [8448];
|
||||
|
||||
users.users.${config.services.caddy.user}.extraGroups = [config.services.matrix-tuwunel.group];
|
||||
|
||||
services.livekit = {
|
||||
enable = true;
|
||||
keyFile = config.sops.templates."livekit-keys".path;
|
||||
openFirewall = true;
|
||||
settings = {
|
||||
rtc = {
|
||||
tcp_port = 7881;
|
||||
port_range_start = 50100;
|
||||
port_range_end = 50200;
|
||||
use_external_ip = true;
|
||||
enable_loopback_candidate = false;
|
||||
};
|
||||
turn = {
|
||||
enabled = true;
|
||||
udp_port = 3478;
|
||||
relay_range_start = 50300;
|
||||
relay_range_end = 65535;
|
||||
domain = rtc_domain;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.lk-jwt-service = {
|
||||
enable = true;
|
||||
port = jwt_port;
|
||||
livekitUrl = "wss://${rtc_domain}";
|
||||
keyFile = config.sops.templates."livekit-keys".path;
|
||||
};
|
||||
|
||||
services = {
|
||||
authelia = {
|
||||
instances.darksailor = {
|
||||
|
||||
@@ -23,6 +23,9 @@
|
||||
caddy = 2019;
|
||||
};
|
||||
in {
|
||||
sops.secrets."grafana/secret_key" = {
|
||||
owner = "grafana";
|
||||
};
|
||||
# Grafana configuration with Authelia integration
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
@@ -54,6 +57,7 @@ in {
|
||||
security = {
|
||||
disable_gravatar = true;
|
||||
cookie_secure = true;
|
||||
secret_key = ''$__file{${config.sops.secrets."grafana/secret_key".path}}'';
|
||||
};
|
||||
|
||||
analytics = {
|
||||
@@ -281,7 +285,7 @@ in {
|
||||
{
|
||||
targets = [
|
||||
"tsuba:8096" # jellyfin (built-in /metrics endpoint)
|
||||
"tsuba:8123" # homeassistant (configure prometheus integration)
|
||||
# "tsuba:8123" # homeassistant (configure prometheus integration)
|
||||
"tsuba:9617" # pihole-exporter
|
||||
];
|
||||
labels = {
|
||||
@@ -298,12 +302,12 @@ in {
|
||||
target_label = "__metrics_path__";
|
||||
replacement = "/metrics";
|
||||
}
|
||||
{
|
||||
source_labels = ["__address__"];
|
||||
regex = "tsuba:8123";
|
||||
target_label = "__metrics_path__";
|
||||
replacement = "/api/prometheus";
|
||||
}
|
||||
# {
|
||||
# source_labels = ["__address__"];
|
||||
# regex = "tsuba:8123";
|
||||
# target_label = "__metrics_path__";
|
||||
# replacement = "/api/prometheus";
|
||||
# }
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
services = {
|
||||
nextcloud = {
|
||||
enable = true;
|
||||
package = pkgs.nextcloud32;
|
||||
package = pkgs.nextcloud33;
|
||||
extraApps = {
|
||||
inherit (config.services.nextcloud.package.packages.apps) contacts calendar bookmarks user_oidc;
|
||||
};
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings.PasswordAuthentication = false;
|
||||
settings.PermitRootLogin = "prohibit-password";
|
||||
settings.PermitRootLogin = "no";
|
||||
};
|
||||
}
|
||||
|
||||
12
nixos/tako/services/servius-website.nix
Normal file
12
nixos/tako/services/servius-website.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
website = inputs.servius-website.packages.${pkgs.system}.default;
|
||||
in {
|
||||
services.caddy.virtualHosts."servius.darksailor.dev".extraConfig = ''
|
||||
root * ${website}
|
||||
file_server
|
||||
'';
|
||||
}
|
||||
33
nixos/tsuba/services/aria2.nix
Normal file
33
nixos/tsuba/services/aria2.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
sops.secrets."aria2/rpc-secret" = {};
|
||||
|
||||
services.aria2 = {
|
||||
enable = true;
|
||||
rpcSecretFile = config.sops.secrets."aria2/rpc-secret".path;
|
||||
settings = {
|
||||
continue = true;
|
||||
dir = "/media/downloads";
|
||||
enable-rpc = true;
|
||||
file-allocation = "none";
|
||||
max-concurrent-downloads = 5;
|
||||
max-connection-per-server = 16;
|
||||
rpc-listen-all = true;
|
||||
rpc-listen-port = 6809;
|
||||
split = 16;
|
||||
};
|
||||
};
|
||||
|
||||
services.caddy.virtualHosts."aria2.tsuba.darksailor.dev".extraConfig = ''
|
||||
import cloudflare
|
||||
root * ${pkgs.ariang}/share/ariang
|
||||
file_server
|
||||
'';
|
||||
services.caddy.virtualHosts."aria2.tsuba.darksailor.dev:6800".extraConfig = ''
|
||||
import cloudflare
|
||||
reverse_proxy localhost:${toString config.services.aria2.settings.rpc-listen-port}
|
||||
'';
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
./caddy.nix
|
||||
./servarr.nix
|
||||
./deluge.nix
|
||||
./aria2.nix
|
||||
./homeassistant.nix
|
||||
./flaresolverr.nix
|
||||
./caddy.nix
|
||||
|
||||
308
overlays.nix
308
overlays.nix
@@ -1,5 +1,7 @@
|
||||
{inputs, ...} @ self: let
|
||||
shell-scipts = final: prev: {
|
||||
cratesNix = pkgs: inputs.crates-nix.mkLib {inherit pkgs;};
|
||||
# --- Shell / CLI utilities ---
|
||||
shell-scripts = final: prev: {
|
||||
handlr-xdg = final.pkgs.writeShellApplication {
|
||||
name = "xdg-open";
|
||||
runtimeInputs = [final.pkgs.handlr-regex];
|
||||
@@ -8,184 +10,9 @@
|
||||
'';
|
||||
};
|
||||
};
|
||||
misc-applications = final: prev: {
|
||||
command-runner = inputs.command-runner.packages.${prev.system}.command-runner;
|
||||
goread = final.pkgs.buildGoModule {
|
||||
pname = "goread";
|
||||
version = "v1.6.4";
|
||||
vendorHash = "sha256-/kxEnw8l9S7WNMcPh1x7xqiQ3L61DSn6DCIvJlyrip0";
|
||||
src = final.pkgs.fetchFromGitHub {
|
||||
owner = "TypicalAM";
|
||||
repo = "goread";
|
||||
rev = "v1.6.4";
|
||||
sha256 = "sha256-m6reRaJNeFhJBUatfPNm66LwTXPdD/gioT8HTv52QOw";
|
||||
};
|
||||
patches = [patches/goread.patch];
|
||||
checkPhase = null;
|
||||
};
|
||||
music-player-git = inputs.music-player.packages.${prev.system}.default;
|
||||
davis = let
|
||||
davis-src = final.pkgs.fetchFromGitHub {
|
||||
owner = "SimonPersson";
|
||||
repo = "davis";
|
||||
rev = "main";
|
||||
sha256 = "sha256-p4l1nF6M28OyIaPorgsyR7NJtmVwpmuws67KvVnJa8s";
|
||||
};
|
||||
cargoToml =
|
||||
builtins.fromTOML (builtins.readFile "${davis-src}/Cargo.toml");
|
||||
in
|
||||
final.rustPlatform.buildRustPackage {
|
||||
pname = cargoToml.package.name;
|
||||
version = cargoToml.package.version;
|
||||
src = davis-src;
|
||||
cargoLock = {lockFile = "${davis-src}/Cargo.lock";};
|
||||
buildPhase = ''
|
||||
runHook cargoBuildHook
|
||||
runHook cargoInstallPostBuildHook
|
||||
'';
|
||||
runtimeInputs = [final.pkgs.picat];
|
||||
buildInputs = [final.pkgs.picat];
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $bins $out/bin
|
||||
cp $src/subcommands/cur/davis-cur-vertical $out/bin
|
||||
cp $src/subcommands/cur/davis-cur-horizontal $out/bin
|
||||
cp $src/subcommands/cover/davis-cover $out/bin
|
||||
'';
|
||||
};
|
||||
|
||||
openapi-tui = let
|
||||
cargoToml = builtins.fromTOML (builtins.readFile "${inputs.openapi-tui}/Cargo.toml");
|
||||
in
|
||||
final.rustPlatform.buildRustPackage {
|
||||
pname = cargoToml.package.name;
|
||||
version = cargoToml.package.version;
|
||||
src = inputs.openapi-tui;
|
||||
cargoLock = {lockFile = "${inputs.openapi-tui}/Cargo.lock";};
|
||||
buildInputs = with final;
|
||||
pkgs.lib.optionals pkgs.stdenv.isDarwin [
|
||||
pkgs.apple-sdk_13
|
||||
]
|
||||
++ pkgs.lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.openssl
|
||||
];
|
||||
PKG_CONFIG_PATH = with final; pkgs.lib.makeSearchPath "lib/pkgconfig" [pkgs.openssl.dev];
|
||||
nativeBuildInputs = with final; [pkgs.pkg-config];
|
||||
};
|
||||
picat = let
|
||||
picat-src = final.pkgs.fetchFromGitHub {
|
||||
owner = "SimonPersson";
|
||||
repo = "picat";
|
||||
rev = "main";
|
||||
sha256 = "sha256-HheBinHW4RLjRtiE8Xe5BoEuSCdtZTA9XkRJgtDkXaM";
|
||||
};
|
||||
cargoToml =
|
||||
builtins.fromTOML (builtins.readFile "${picat-src}/Cargo.toml");
|
||||
in
|
||||
final.rustPlatform.buildRustPackage {
|
||||
pname = cargoToml.package.name;
|
||||
version = cargoToml.package.version;
|
||||
src = picat-src;
|
||||
cargoLock = {lockFile = "${picat-src}/Cargo.lock";};
|
||||
};
|
||||
psst =
|
||||
if final.pkgs.stdenv.isLinux
|
||||
then
|
||||
(prev.psst.overrideAttrs (finalAttrs: prevAttrs: {
|
||||
postInstall =
|
||||
(prevAttrs.postInstall or "")
|
||||
+ ''
|
||||
patch $out/share/applications/Psst.desktop < ${./patches/psst.patch}
|
||||
'';
|
||||
}))
|
||||
else
|
||||
final.rustPlatform.buildRustPackage rec {
|
||||
pname = "psst";
|
||||
version = "1";
|
||||
src = final.pkgs.fetchFromGitHub {
|
||||
owner = "jpochyla";
|
||||
repo = "psst";
|
||||
rev = "master";
|
||||
sha256 = "sha256-W+MFToyvYDQuC/8DqigvENxzJ6QGQOAeAdmdWG6+qZk";
|
||||
};
|
||||
buildInputs = with final; [
|
||||
pkgs.apple-sdk_13
|
||||
];
|
||||
cargoLock = {
|
||||
lockFile = "${src}/Cargo.lock";
|
||||
outputHashes = {
|
||||
"cubeb-0.10.3" = "sha256-gV1KHOhq678E/Rj+u8jX9Fw+TepPwuZdV5y/D+Iby+o";
|
||||
"druid-0.8.3" = "sha256-hTB9PQf2TAhcLr64VjjQIr18mczwcNogDSRSN5dQULA";
|
||||
"druid-enums-0.1.0" = "sha256-KJvAgKxicx/g+4QRZq3iHt6MGVQbfOpyN+EhS6CyDZk";
|
||||
};
|
||||
};
|
||||
};
|
||||
ddcbacklight = inputs.ddcbacklight.packages.${prev.system}.ddcbacklight;
|
||||
# ik_llama = prev.llama-cpp.overrideAttrs (oldAttrs: {
|
||||
# src = inputs.ik_llama;
|
||||
# version = "5995";
|
||||
# });
|
||||
# llama-cpp = prev.llama-cpp.overrideAttrs (oldAttrs: {
|
||||
# src = inputs.llama-cpp;
|
||||
# version = "6178";
|
||||
# cmakeFlags = oldAttrs.cmakeFlags;
|
||||
# });
|
||||
python312 = prev.python312.override {
|
||||
packageOverrides = final: prev: {
|
||||
pysaml2 = prev.pysaml2.overridePythonAttrs (orig: {
|
||||
doCheck = false;
|
||||
# disabledTests =
|
||||
# orig.disabledTests
|
||||
# ++ [
|
||||
# "test_encrypted_response_6"
|
||||
# "test_validate_cert_chains"
|
||||
# "test_validate_with_root_cert"
|
||||
# ];
|
||||
});
|
||||
};
|
||||
};
|
||||
zeronsd = let
|
||||
src = inputs.zeronsd;
|
||||
in
|
||||
final.rustPlatform.buildRustPackage {
|
||||
inherit src;
|
||||
pname = "zeronsd";
|
||||
version = "0.6";
|
||||
|
||||
strictDeps = true;
|
||||
buildInputs = [final.pkgs.openssl];
|
||||
nativeBuildInputs = [final.pkgs.pkg-config];
|
||||
|
||||
doCheck = false;
|
||||
RUSTFMT = "${final.pkgs.rustfmt}/bin/rustfmt";
|
||||
|
||||
cargoLock = {lockFile = "${src}/Cargo.lock";};
|
||||
};
|
||||
# alvr-master = inputs.alvr.packages.${prev.system}.default;
|
||||
caddyWithCloudflare = inputs.nixpkgs.legacyPackages.${final.system}.caddy.withPlugins {
|
||||
plugins = ["github.com/caddy-dns/cloudflare@v0.2.2"];
|
||||
hash = "sha256-dnhEjopeA0UiI+XVYHYpsjcEI6Y1Hacbi28hVKYQURg=";
|
||||
};
|
||||
nix-auth = inputs.nix-auth.packages.${prev.system}.nix-auth;
|
||||
kitty = inputs.nixpkgs-stable.legacyPackages.${prev.system}.kitty;
|
||||
yabai = prev.yabai.overrideAttrs (oldAttrs: rec {
|
||||
version = "7.1.16";
|
||||
src = final.fetchzip {
|
||||
url = "https://github.com/koekeishiya/yabai/releases/download/v${version}/yabai-v${version}.tar.gz";
|
||||
hash = "sha256-rEO+qcat6heF3qrypJ02Ivd2n0cEmiC/cNUN53oia4w=";
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
anyrun-overlay = final: prev: {
|
||||
anyrun =
|
||||
inputs.anyrun.packages.${prev.system}.anyrun.overrideAttrs
|
||||
(finalAttrs: prevAttrs: {patches = [./patches/ctrl-np.patch];});
|
||||
hyprwin = inputs.anyrun-hyprwin.packages.${prev.system}.hyprwin;
|
||||
nixos-options = inputs.anyrun-nixos-options.packages.${prev.system}.default;
|
||||
anyrun-rink = inputs.anyrun-rink.packages.${prev.system}.default;
|
||||
};
|
||||
tmuxPlugins = final: prev: {
|
||||
# --- Terminal multiplexers ---
|
||||
terminal = final: prev: {
|
||||
tmuxPlugins =
|
||||
prev.tmuxPlugins
|
||||
// {
|
||||
@@ -200,28 +27,18 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
tmux-float = inputs.tmux-float.packages.${prev.system}.default;
|
||||
};
|
||||
catppuccinThemes = final: prev: {
|
||||
catppuccinThemes = import ./themes/catppuccin.nix {pkgs = final.pkgs;};
|
||||
};
|
||||
nix-index-db = final: prev: {
|
||||
nix-index-database = final.runCommandLocal "nix-index-database" {} ''
|
||||
mkdir -p $out
|
||||
ln -s ${
|
||||
inputs.nix-index-database.legacyPackages.${prev.system}.database
|
||||
} $out/files
|
||||
'';
|
||||
};
|
||||
zellij = final: prev: {
|
||||
tmux-float = inputs.tmux-float.packages.${prev.stdenv.hostPlatform.system}.default;
|
||||
zellijPlugins = {
|
||||
zjstatus = inputs.zjstatus.packages.${prev.system}.default;
|
||||
zjstatus = inputs.zjstatus.packages.${prev.stdenv.hostPlatform.system}.default;
|
||||
};
|
||||
};
|
||||
libfprint = final: prev: {
|
||||
|
||||
# --- System libraries ---
|
||||
system-libs = final: prev: {
|
||||
# Custom libfprint with CS9711 fingerprint reader support
|
||||
# https://github.com/archeYR/libfprint-CS9711/commits/cs9711-rebase/
|
||||
libfprint = prev.libfprint.overrideAttrs (oldAttrs: {
|
||||
version = "git";
|
||||
# https://github.com/archeYR/libfprint-CS9711/commits/cs9711-rebase/
|
||||
src = final.fetchFromGitHub {
|
||||
owner = "archeYR";
|
||||
repo = "libfprint-CS9711";
|
||||
@@ -237,66 +54,73 @@
|
||||
final.doctest
|
||||
];
|
||||
});
|
||||
# fprintd = inputs.nixpkgs-stable.legacyPackages.${prev.system}.fprintd;
|
||||
# fprintd = prev.fprintd.overrideAttrs (oldAttrs: {
|
||||
# src = inputs.nixpkgs-stable.legacyPackages.${prev.system}.fprintd.src;
|
||||
# });
|
||||
};
|
||||
csshacks = final: prev: {
|
||||
csshacks = inputs.csshacks;
|
||||
|
||||
# --- Networking ---
|
||||
networking = final: prev: {
|
||||
caddyWithCloudflare = inputs.nixpkgs.legacyPackages.${prev.stdenv.hostPlatform.system}.caddy.withPlugins {
|
||||
plugins = ["github.com/caddy-dns/cloudflare@v0.2.2"];
|
||||
hash = "sha256-Gb1nC5fZfj7IodQmKmEPGygIHNYhKWV1L0JJiqnVtbs=";
|
||||
};
|
||||
};
|
||||
jellyfin = final: prev: {
|
||||
jellyfin-web = prev.jellyfin-web.overrideAttrs (finalAttrs: previousAttrs: {
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
# this is the important line
|
||||
sed -i "s#</head>#<script src=\"configurationpage?name=skip-intro-button.js\"></script></head>#" dist/index.html
|
||||
# --- Media ---
|
||||
media = final: prev: {
|
||||
ddcbacklight = inputs.ddcbacklight.packages.${prev.stdenv.hostPlatform.system}.ddcbacklight;
|
||||
music-player-git = inputs.music-player.packages.${prev.stdenv.hostPlatform.system}.default;
|
||||
};
|
||||
|
||||
mkdir -p $out/share
|
||||
cp -a dist $out/share/jellyfin-web
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
# --- macOS-specific ---
|
||||
darwin = final: prev: {
|
||||
kitty = inputs.nixpkgs-stable.legacyPackages.${prev.stdenv.hostPlatform.system}.kitty;
|
||||
yabai = prev.yabai.overrideAttrs (oldAttrs: rec {
|
||||
version = "7.1.16";
|
||||
src = final.fetchzip {
|
||||
url = "https://github.com/koekeishiya/yabai/releases/download/v${version}/yabai-v${version}.tar.gz";
|
||||
hash = "sha256-rEO+qcat6heF3qrypJ02Ivd2n0cEmiC/cNUN53oia4w=";
|
||||
};
|
||||
});
|
||||
};
|
||||
# immich = final: prev: {
|
||||
# immich-latest = prev.immich.overrideAttrs (oldAttrs: {
|
||||
# version = "v1.142.0";
|
||||
# src = inputs.immich;
|
||||
# });
|
||||
# };
|
||||
vr = final: prev: {
|
||||
# wivrn-nightly = prev.wivrn.overrideAttrs (oldAttrs: {
|
||||
# version = "v25.11.1";
|
||||
# src = inputs.wivrn;
|
||||
# });
|
||||
wivrn-nightly = inputs.wivrn.packages.${prev.system}.default;
|
||||
|
||||
applications = final: prev: {
|
||||
iamb = inputs.iamb.packages.${prev.stdenv.hostPlatform.system}.default;
|
||||
hyprland = inputs.hyprland.packages.${prev.stdenv.hostPlatform.system}.hyprland;
|
||||
xdg-desktop-portal-hyprland = prev.enableDebugging inputs.hyprland.packages.${prev.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
||||
xdph = inputs.nixpkgs-master.legacyPackages.${prev.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
||||
ironclaw = (cratesNix prev).buildCrate "ironclaw" {
|
||||
nativeBuildInputs = [prev.pkg-config];
|
||||
buildInputs = [prev.openssl];
|
||||
doCheck = false;
|
||||
};
|
||||
};
|
||||
games = final: prev: {
|
||||
hytale-launcher = inputs.hytale-launcher.packages.${prev.system}.default;
|
||||
|
||||
# --- Themes and assets ---
|
||||
themes = final: prev: {
|
||||
catppuccinThemes = import ./themes/catppuccin.nix {pkgs = final.pkgs;};
|
||||
nix-index-database = final.runCommandLocal "nix-index-database" {} ''
|
||||
mkdir -p $out
|
||||
ln -s ${inputs.nix-index-database.legacyPackages.${prev.stdenv.hostPlatform.system}.database} $out/files
|
||||
'';
|
||||
};
|
||||
in
|
||||
[
|
||||
games
|
||||
vr
|
||||
anyrun-overlay
|
||||
catppuccinThemes
|
||||
csshacks
|
||||
# Local overlays
|
||||
shell-scripts
|
||||
terminal
|
||||
system-libs
|
||||
networking
|
||||
media
|
||||
darwin
|
||||
themes
|
||||
applications
|
||||
|
||||
# External input overlays
|
||||
inputs.deploy-rs.overlays.default
|
||||
inputs.nix-minecraft.overlay
|
||||
inputs.nur.overlays.default
|
||||
inputs.rust-overlay.overlays.default
|
||||
inputs.eilmeldung.overlays.default
|
||||
inputs.handoff.overlays.default
|
||||
inputs.headplane.overlays.default
|
||||
inputs.nix-minecraft.overlay
|
||||
inputs.nur.overlays.default
|
||||
inputs.vicinae.overlays.default
|
||||
inputs.eilmeldung.overlays.default
|
||||
jellyfin
|
||||
libfprint
|
||||
misc-applications
|
||||
nix-index-db
|
||||
shell-scipts
|
||||
tmuxPlugins
|
||||
zellij
|
||||
]
|
||||
++ (import ./neovim/overlays.nix {inherit inputs;})
|
||||
|
||||
@@ -6,6 +6,8 @@ paperless:
|
||||
accounts:
|
||||
mail:
|
||||
fastmail: ENC[AES256_GCM,data:WCqmJqUjJz/mUdVB9xDvYQ==,iv:uU3X7/doSz6v0c8eHfB6riOkxWoWqYhbsoexaZwdb4Q=,tag:0oSRXo93siNQDlOgPA3Hsw==,type:str]
|
||||
calendar:
|
||||
fastmail: ENC[AES256_GCM,data:pjTLouC7hVSdjb14UmCM7g==,iv:YdznLQUxf5YFl1AhdZE1sj1MiIOPEBhCbxM8EB4ye8c=,tag:H55Nk8rAsDkSsPJRm+9L5Q==,type:str]
|
||||
gitea:
|
||||
registration: ENC[AES256_GCM,data:1FVvZF6e4AQK09Qd/hTqCvAEsnKyNztcQ6gFWHprMSNHkodNoyAyZg==,iv:ftnk06e9XV8+ZFupnV4I4a4he1ne9jAzmihli5Vt6h8=,tag:5+Tqzh/dSSWB221h01ftyQ==,type:str]
|
||||
llama:
|
||||
@@ -53,6 +55,9 @@ authelia:
|
||||
excalidraw:
|
||||
client_id: ENC[AES256_GCM,data:ANaCFTiPnR/bP51lSMfiTRX7ZGZ2pmX3Guamsyj7KRzD34G18E+UUgXi0YdbDfmFxcEj+nvoerf7wWhtvIzO1Q==,iv:CyNiLA0PH0p1Zwdf8B6/Ysb6GODClnXkPctbtZnoddw=,tag:X3kAkBKD407QFg/Se33Flg==,type:str]
|
||||
client_secret: ENC[AES256_GCM,data:VHIbKjHWXfQCUp3wh2dsMpMaDdCabmVlLMHcMnTCXPr5ZNIS1zpyGD6keapoOYywwvDFenICf73vpHun5aFhLw==,iv:HjRTwREC2jMsW1VrVYe4iywGc9apWZWLwh5aHOjvde0=,tag:Jl9kDI8C9VjSm6SiePk7Ow==,type:str]
|
||||
affine:
|
||||
client_id: ENC[AES256_GCM,data:riwC/9GuHamkV7U80+qCXP/F2wP0volVmRXtkVOQu7NfBb9OlSnamMvVh1pRNHj4c3AZWHpYIIHpkhuNKUuD+A==,iv:gi70CRZqRYfvHq7JhY+N3rX3Trb7eLqgmUlFqLk7p+4=,tag:M6MzyKRTJpZsznXzvxQINQ==,type:str]
|
||||
client_secret: ENC[AES256_GCM,data:/4+606H4s50+E25LOaVRi5Vt0rpzg9mAHSonYaLASPW/jEwAxwTNunWGvOg4ydjF+D9VBUbYcp1krZnlrhDp9sRR81vf+1G9aA69mWVPF7aMjBx5wA44tBszjLc/KKx804qbopG1m4y828aPrFvknx2d7Rox/YkvhLoq5jPjyVU=,iv:9s4OQNTtPBcN+7kvtH9u9kkPadFG7MG0LdlHAhMR5sw=,tag:BV0G1f/5qGAfrdRMshHzYw==,type:str]
|
||||
lldap:
|
||||
jwt: ENC[AES256_GCM,data:61dwC1ElOOGaf0CmalzXZnxImEyufKjUUWcNaEcOuv3TEODhQyHK7g==,iv:CVEJVuaCc2gDmSYWHS3fPL8FjbvblF6IladAzGoGb0o=,tag:OMm/OdKjliHjsGqJripLbg==,type:str]
|
||||
seed: ENC[AES256_GCM,data:jJPutPkhFVFxLbbQNZznHHiilP/cN2r+/vT4ArQVRQSqPMnkkwgc3LNk4sUTrT9V,iv:LD1IJ1CgtDfYf1gSyyaU+hir0InuDEq0u7ppMmwGJRY=,tag:cK4l4Evr7V9WEUEL7V9jtQ==,type:str]
|
||||
@@ -74,7 +79,7 @@ minecraft:
|
||||
modded: ENC[AES256_GCM,data:6itrol9NObR3TczEeOa7wkykgqkpDus0VkHBRpU6VdQ=,iv:F56uYdHozJvkJ+m18aviTWzCrLfW2VcxkbOqpnRiniA=,tag:WLKA+uIJJtlDfMMOn0ak7Q==,type:str]
|
||||
grafana:
|
||||
adminPassword: ENC[AES256_GCM,data:im6FJVlVUoZg+9W6KmsqtloH4nB6AhXOcia5waRyFKj2DoQlt4jhPH1CFvw=,iv://D6aD/fGl7h4KmtQcQ0TQLWLfKdIs4+EMg2LWjPHvg=,tag:6gHu/V0V0a8GpcgA/hUwXg==,type:str]
|
||||
secretKey: ENC[AES256_GCM,data:LD0x8Fa6SU1+6mwxLkKa/o+ZqeuRIr7o/AKS7EmrDYj0vzrA3/FjViVJNfkOJDch9TbVyjIpk2ZLwxHXOZx7MA==,iv:t6UwZj2JZpMIDsDDeJ4rZah4aBoMIKaoiu9VU2VhViE=,tag:MIz/b8JWYtOpUCcg6gYhJg==,type:str]
|
||||
secret_key: ENC[AES256_GCM,data:QkNTWQyQGgD/zJ0C0nkqTuxJXCx/hqwFH1XrJEGcIB7U3PUNdMpvTYrazgGRUcfEUjMeCIbUgYcamrPJJgaBsA==,iv:RZa79OtDS74JErBk/j5wg/p02Rd4zCXLi4LQGffHLmU=,tag:sbsovzFXj3xmDIF+ACwPgQ==,type:str]
|
||||
discord:
|
||||
token: ENC[AES256_GCM,data:M6TayHpIa0J1w3zVRKPPU0P/f18UXOpxzU7fjKNCx8YxzSAaQfY52S5XpiqDgjPWfWdSxzG2VVDqu1708Vwofa8IRKwWafam,iv:x0ySoaS68aLRVUcQin096RoeQGRELvNwdFJxezPj/cA=,tag:Omv5uL97y7ZTI8juVJFNug==,type:str]
|
||||
lastfm:
|
||||
@@ -101,6 +106,10 @@ livekit:
|
||||
key_secret: ENC[AES256_GCM,data:n0SH6SLYXOwdjJ5nNku0Pg6/DZxmYG7iLfNNDbKlvF9DiCDxfn2ag1fToxWGz0qrAvqV6b3PdD123BURDzJ+gQ==,iv:1Pix12Pxr/kX/SqRWHOaSdccIZTQsSoFVGXYNyx2Rfo=,tag:QG1qDJPBUUtlih+TcXXsRQ==,type:str]
|
||||
coturn:
|
||||
static_auth_secret: ENC[AES256_GCM,data:osEBYgWGZl+SnqVV1G9IxMys/qDm6WTtj4nILYVw0klDjiB6vd21yA0ik/rLv9E6Y539uMCk3oB0NS7I72U1hQ==,iv:jruS3vfe0fVHY67qNhEgaCEp/9cR57UIu8a/LhdTC1o=,tag:vhxXhh9u4bOSu/lxINjvew==,type:str]
|
||||
affine:
|
||||
db_password: ENC[AES256_GCM,data:AbpoEbmeihtVIoRaWxVL8+v3oCk5iiia9qZLKgyy98qTuNZruiaV3kQN6clYvWgHbzJta5/H9e+xocrEtw8C/A==,iv:2vPeDAJuVujPgM+kr6AFAvat2MCJnsblebx23Ey7YNA=,tag:ukuK30aZ//MKabhSRtLNXw==,type:str]
|
||||
aria2:
|
||||
rpc-secret: ENC[AES256_GCM,data:peFtDURHjlQOAM1v1AP9BBHmXhpPTE0kKRcL9eBV9rIFnDcKw5+nAP9+8sW4CRcE6l9DoxZFau7+IsnDgrFp5g==,iv:DkHiaZlPcHMnOPLflxlF4fs/bdOe799/SQQZ9WZ1Tq4=,tag:R1aWdUQdtzySOmYitNxD1Q==,type:str]
|
||||
sops:
|
||||
age:
|
||||
- recipient: age1pw7kluxp7872c63ne4jecq75glj060jkmqwzkk6esatuyck9egfswufdpk
|
||||
@@ -112,7 +121,7 @@ sops:
|
||||
VGZKdHpVeFRpQUxtSEkyaEhLMlBJcGsKLb0DvPNZosPBUuiX6qz1s5IO5INQh8CK
|
||||
ZtXTVClwMSmaUYhdSB2gKFrKVZHXTJZ4oAL5t/BpC0pOHyr+o96T3Q==
|
||||
-----END AGE ENCRYPTED FILE-----
|
||||
lastmodified: "2026-02-12T13:19:01Z"
|
||||
mac: ENC[AES256_GCM,data:IVU1PbDwH1JKG3qPOtmfMZr7BJ7zR/UGQ167Tyf62w5V1gaiVoeqjD8/MR6OSvhMDNYxjJXRKg9E9N8q4JRxok34v5zOfqWchnXEP9wIS39kgsYJ1Hra7hOryd5n49/Xkwyen6f1VSe1nkKtldWS9XHwDBZRrSE+kaXcZTQmKIY=,iv:WLRVIEzR0MFsY6EAgyXZCHQz/xD4cSaeikA8nZqHy38=,tag:+TyOvwWkHa4fHYonKBfxyg==,type:str]
|
||||
lastmodified: "2026-03-13T17:35:01Z"
|
||||
mac: ENC[AES256_GCM,data:6VfirvrqmBLDg3XnJzBY5z1Fy/yAOhuLF6YnFH0pJ17beIHfkQQ/BbL0vBI1YfjyGjqQannp/0SpEwqA5uhvaHpQV2F1eFwotjrgFiGBrnhirLSXiHLGcnQtIeu2ue1McwbtJVZNWaOtdcz71+QeKn53+4jcDnb/wu/46+Q/nB0=,iv:eQ61Bpyom1cvTRZMiAMes2lrAGlAtuKTAxR/k2Caxh4=,tag:i+SBR1/V6jb3c3mGT4XykQ==,type:str]
|
||||
unencrypted_suffix: _unencrypted
|
||||
version: 3.11.0
|
||||
|
||||
Reference in New Issue
Block a user