a dotfile but it's really big
0
fork

Configure Feed

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

handy: add post-process config

+17 -25
+5 -5
flake.lock
··· 438 438 }, 439 439 "nixpkgs_2": { 440 440 "locked": { 441 - "lastModified": 1776949667, 442 - "narHash": "sha256-Kq5uL1t/WUp+Z3CjXDpoE9seUiUNLqHN3FkiIjneWeA=", 443 - "rev": "01fbdeef22b76df85ea168fbfe1bfd9e63681b30", 441 + "lastModified": 1777282418, 442 + "narHash": "sha256-4JlqhQwbxG2/ym+GtCvRyfHx8WDcy4csCPUQheDtqi8=", 443 + "rev": "dfa1e6982e80e1b6a887a4e8d9f45dc9c98ede4d", 444 444 "type": "tarball", 445 - "url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.05pre985930.01fbdeef22b7/nixexprs.tar.xz" 445 + "url": "https://releases.nixos.org/nixos/unstable-small/nixos-26.05pre987642.dfa1e6982e80/nixexprs.tar.xz" 446 446 }, 447 447 "original": { 448 448 "type": "tarball", 449 - "url": "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz" 449 + "url": "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz" 450 450 } 451 451 }, 452 452 "noctalia": {
+2 -2
flake.nix
··· 2 2 outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } { imports = [ ./modules ]; }; 3 3 inputs = { 4 4 # https://deer.social/profile/did:plc:mojgntlezho4qt7uvcfkdndg/post/3loogwsoqok2w 5 - nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 6 - # nixpkgs.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 5 + # nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 6 + nixpkgs.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 7 7 home-manager = { 8 8 type = "github"; 9 9 owner = "nix-community";
-14
modules/desktop/wm/noctalia/default.nix
··· 32 32 "launcher" 33 33 "toggle" 34 34 ]; 35 - "Mod+Shift+N".action.spawn = [ 36 - "noctalia-shell" 37 - "ipc" 38 - "call" 39 - "controlCenter" 40 - "toggle" 41 - ]; 42 - "Mod+Shift+O".action.spawn = [ 43 - "noctalia-shell" 44 - "ipc" 45 - "call" 46 - "sessionMenu" 47 - "toggle" 48 - ]; 49 35 }; 50 36 }; 51 37
+10 -4
systems/kiwi/handy.nix
··· 1 1 { inputs', lib, ... }: 2 2 { 3 - programs.niri.settings.binds."Mod+Shift+M".action.spawn = [ 4 - (lib.getExe inputs'.handy.packages.handy) 5 - "--toggle-transcription" 6 - ]; 3 + programs.niri.settings.binds = { 4 + "Mod+Shift+M".action.spawn = [ 5 + (lib.getExe inputs'.handy.packages.handy) 6 + "--toggle-transcription" 7 + ]; 8 + "Mod+Shift+N".action.spawn = [ 9 + (lib.getExe inputs'.handy.packages.handy) 10 + "--toggle-post-process" 11 + ]; 12 + }; 7 13 home.packages = [ inputs'.handy.packages.handy ]; 8 14 }