my NixOS and nix-darwin config
0
fork

Configure Feed

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

feat: more filaments stuff

+25 -22
+6 -6
flake.lock
··· 64 64 "nixpkgs": "nixpkgs" 65 65 }, 66 66 "locked": { 67 - "lastModified": 1775536315, 68 - "narHash": "sha256-jIIJQe3fQTVLXtQfBnq1/Lbgxy4TZ0n4YBWHLI6qmj8=", 67 + "lastModified": 1775581357, 68 + "narHash": "sha256-eMkvoy7S4flwiCC1SR8MyAIQITftxoQCbJPPqMZ7t9g=", 69 69 "owner": "suri-codes", 70 70 "repo": "filaments", 71 - "rev": "7764623ac1b48228f0b8c64aa3bc90beafc0d241", 71 + "rev": "37f3bd2a78d6bd340fbe6b013b4b4a58a2ed260f", 72 72 "type": "github" 73 73 }, 74 74 "original": { ··· 103 103 ] 104 104 }, 105 105 "locked": { 106 - "lastModified": 1775457580, 107 - "narHash": "sha256-ikws/ssAmG20AGrEwBuwspwPlkubJu34mB+Uz2fJBJs=", 106 + "lastModified": 1775556024, 107 + "narHash": "sha256-j1u/859OVS54rGlsvFqJdwKPEnFYCI+4pyfTiSfv1Xc=", 108 108 "owner": "nix-community", 109 109 "repo": "home-manager", 110 - "rev": "5de7dbd151b0bd65d45785553d4a22d832733ffc", 110 + "rev": "4bdfeff1d9b7473e6e58f73f5809576e8a69e406", 111 111 "type": "github" 112 112 }, 113 113 "original": {
+6
modules/home/shells/fish/default.nix
··· 106 106 107 107 functions = { 108 108 109 + # helix bugging out my terminal setting stuff 110 + hx = '' 111 + command hx $argv 112 + printf '\033[0m' 113 + ''; 114 + 109 115 # yazi function that takes me to different directory when I exit. 110 116 y = '' 111 117 set tmp (mktemp -t "yazi-cwd.XXXXXX")
+10 -13
modules/home/tools/filaments/config/config.ron
··· 1 1 ( 2 - 3 2 directory: "/Users/suri/dev/personal/filaments", 4 3 global_key_binds: { 5 - "ctrl-c": Quit, 6 - "ctrl-z": Suspend, 7 4 "up": MoveUp, 5 + "ctrl-z": Suspend, 8 6 "down": MoveDown, 7 + "ctrl-c": Quit, 9 8 }, 10 9 zk: ( 11 10 keybinds: { 12 11 "<Ctrl-n>": NewZettel, 13 12 "enter": OpenZettel, 14 - // "tab": SwitchTo ( 15 - // region: Todo 16 - // ), 17 - 13 + "tab": SwitchTo( 14 + region: Todo, 15 + ), 18 16 }, 19 17 ), 20 18 todo: ( 21 19 keybinds: { 22 - "j": MoveDown, 23 20 "k": MoveUp, 24 - // "tab": SwitchTo ( 25 - // region: Zk 26 - // ), 27 - 21 + "j": MoveDown, 22 + "tab": SwitchTo( 23 + region: Zk, 24 + ), 28 25 }, 29 26 ), 30 - ) 27 + )
+1 -1
modules/home/tools/helix/default.nix
··· 24 24 programs.helix = { 25 25 enable = true; 26 26 # building helix from source 27 - package = helix.packages.${pkgs.system}.default; 27 + # package = helix.packages.${pkgs.system}.default; 28 28 defaultEditor = true; 29 29 extraPackages = with pkgs; [ 30 30 nil
+1 -1
modules/home/tools/helix/helix/config.toml
··· 1 - theme = "nyx" 1 + theme = "catppuccin_mocha" 2 2 3 3 [editor] 4 4 line-number = "relative"
+1 -1
modules/home/tools/helix/helix/languages.toml
··· 52 52 args = ["--log-level", "info"] 53 53 54 54 [language-server.filaments] 55 - command = "/Users/suri/dev/projects/filaments/target/debug/fil" 55 + command = "fil" 56 56 args = ["lsp"] 57 57 # --- Languages --- 58 58