my nixos flake :3 (git.koi.rip mirror) git.koi.rip/koi/flake
nixos catppuccin linux dotfiles neovim
0

Configure Feed

Select the types of activity you want to include in your feed.

miku: init washing-machien

june (Jun 6, 2026, 8:53 PM +0200) 6689e64d 0d7b65d3

+56
+21
flake.lock
··· 300 300 "seberjune": "seberjune", 301 301 "systems": "systems", 302 302 "tranquil-pds": "tranquil-pds", 303 + "washing-machien": "washing-machien", 303 304 "zen-browser": "zen-browser" 304 305 } 305 306 }, ··· 356 357 "original": { 357 358 "type": "git", 358 359 "url": "https://tangled.org/did:web:tranquil.tranquil.farm/tranquil-pds" 360 + } 361 + }, 362 + "washing-machien": { 363 + "inputs": { 364 + "nixpkgs": [ 365 + "nixpkgs" 366 + ] 367 + }, 368 + "locked": { 369 + "lastModified": 1780539720, 370 + "narHash": "sha256-i6PFqIUrelYBc0tbLk7dijbjm468uftlABHLKRcYO78=", 371 + "ref": "refs/heads/main", 372 + "rev": "b981d1e78fb8ff8b6700d56e526081debec95100", 373 + "revCount": 31, 374 + "type": "git", 375 + "url": "https://tangled.org/did:plc:nz5npphohxgjo2blfipdatam/washing-machien" 376 + }, 377 + "original": { 378 + "type": "git", 379 + "url": "https://tangled.org/did:plc:nz5npphohxgjo2blfipdatam/washing-machien" 359 380 } 360 381 }, 361 382 "xwayland-satellite-stable": {
+5
flake.nix
··· 51 51 inputs.nixpkgs.follows = "nixpkgs"; 52 52 }; 53 53 54 + washing-machien = { 55 + url = "git+https://tangled.org/did:plc:nz5npphohxgjo2blfipdatam/washing-machien"; 56 + inputs.nixpkgs.follows = "nixpkgs"; 57 + }; 58 + 54 59 agenix = { 55 60 url = "github:ryantm/agenix"; 56 61 inputs = {
+1
secrets/secrets.nix
··· 5 5 { 6 6 "libera-password.age".publicKeys = koi; 7 7 "jellyfin-rpc.json.age".publicKeys = koi; 8 + "washing-machien.env.age".publicKeys = koi; 8 9 "cloudflared.pem.age".publicKeys = koi; 9 10 "tranquil.env.age".publicKeys = koi; 10 11
+5
secrets/washing-machien.env.age
··· 1 + age-encryption.org/v1 2 + -> ssh-ed25519 IU0gwQ YJsR9JJaoD9gi8XNQ8zxdapciSmvw/f9hp5LbFSFbQA 3 + 10wLDG87/VyINW34X36UnGIY2neLvdCGV3uIkcYE82Q 4 + --- Gp0XSSlYGr9zZXwkjQFLTRZc0luXHEfuA05TITyn6s0 5 + o � <N��K��5N�"dӎ��~W�T�i���o����D�8�ډX��m�q$�:��8� �����_@�!3l�[^*H�V���^U[C����CC�&�G���z�,�亼]�R������K�~���]�����<q@
+1
systems/miku/services/default.nix
··· 6 6 ./cloudflared.nix 7 7 ./tranquil-pds.nix 8 8 ./seberjune.nix 9 + ./washing-machien.nix 9 10 ]; 10 11 }
+23
systems/miku/services/washing-machien.nix
··· 1 + { 2 + inputs, 3 + config, 4 + pkgs, 5 + ... 6 + }: 7 + let 8 + pfp = pkgs.fetchurl { 9 + url = "https://koi.rip/img/silly/pfp.png"; 10 + hash = "sha256-fUt2WMefVUpCRqw1+kqw2ay6HfhphrfahlI9WfkOJjM="; 11 + }; 12 + in 13 + { 14 + imports = [ inputs.washing-machien.nixosModules.default ]; 15 + 16 + age.secrets.washing-machien-env.file = ../../../secrets/washing-machien.env.age; 17 + 18 + services.washing-machien = { 19 + enable = true; 20 + input = pfp; 21 + environmentFile = config.age.secrets.washing-machien-env.path; 22 + }; 23 + }