Flake for my NixOS devices
1
fork

Configure Feed

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

cmp-nvim fixes

bwc9876.dev 75c4a103 a0d42cae

verified
+17 -16
+9 -9
flake.lock
··· 565 565 "rust-overlay": "rust-overlay" 566 566 }, 567 567 "locked": { 568 - "lastModified": 1770064250, 569 - "narHash": "sha256-3HB6gfnKZnwDoH77lnJktJtQWEZ+D35Oi53pNF6YwO4=", 568 + "lastModified": 1770579389, 569 + "narHash": "sha256-2OwcZVHHsq3DSnJsUOiw0i/ovRqdlIG4uj5RPRql+8I=", 570 570 "owner": "nix-community", 571 571 "repo": "lanzaboote", 572 - "rev": "9985b98c74dcc7b1c7ccfe8693daf37caa4ed2ea", 572 + "rev": "7b637233a79e6041affba3f33957995c57f4b140", 573 573 "type": "github" 574 574 }, 575 575 "original": { ··· 639 639 "xwayland-satellite-unstable": "xwayland-satellite-unstable" 640 640 }, 641 641 "locked": { 642 - "lastModified": 1770493836, 643 - "narHash": "sha256-UPG9xFnVkqHF5e2GOucQO8BXXzwp8BwwON2g+WBXLMA=", 642 + "lastModified": 1770571272, 643 + "narHash": "sha256-IUBQMceKisLf1aqo0OWIuEEJLYCQjpvfAJYNZCqu5wE=", 644 644 "owner": "sodiboo", 645 645 "repo": "niri-flake", 646 - "rev": "a17befde0c0ca25617fb3da505294deb45cef170", 646 + "rev": "992922f59953b7f55f6b2de7f8bb661e93bc210e", 647 647 "type": "github" 648 648 }, 649 649 "original": { ··· 1174 1174 "xwayland-satellite-unstable": { 1175 1175 "flake": false, 1176 1176 "locked": { 1177 - "lastModified": 1770167989, 1178 - "narHash": "sha256-rE2WTxKHe3KMG/Zr5YUNeKHkZfWwSFl7yJXrOKnunHg=", 1177 + "lastModified": 1770568598, 1178 + "narHash": "sha256-w7XGGbI3cxtJWK/B2n+yuhm1S3Vv21OPtIMFLTwbU20=", 1179 1179 "owner": "Supreeeme", 1180 1180 "repo": "xwayland-satellite", 1181 - "rev": "0947c4685f6237d4f8045482ce0c62feab40b6c4", 1181 + "rev": "e6dd3c05c098aef4e6a31fa95c04f129e9b52618", 1182 1182 "type": "github" 1183 1183 }, 1184 1184 "original": {
+5
homeModules/dev.nix
··· 20 20 python = mkLangOpt "Python dev stuff"; 21 21 dotnet = mkLangOpt ".NET dev stuff"; 22 22 cutter = mkLangOpt "Cutter"; 23 + typst = mkLangOpt "Typst"; 23 24 mc = lib.mkEnableOption "Minecraft modpack stuff"; 24 25 }; 25 26 ··· 113 114 dotnet-runtime_10 114 115 mono 115 116 dotnetPackages.Nuget 117 + ]) 118 + ++ (lib.optionals conf.typst [ 119 + typst 120 + typstyle 116 121 ]) 117 122 ++ (lib.optional conf.cutter (cutter.withPlugins (p: with p; [rz-ghidra]))); 118 123 };
+3 -7
homeModules/nvim.nix
··· 512 512 sources = map (name: {inherit name;}) [ 513 513 "nvim_lsp" 514 514 "nvim_lsp_signature_help" 515 + "spell" 515 516 "path" 516 517 "buffer" 517 518 ]; ··· 523 524 }; 524 525 }; 525 526 }; 526 - 527 - # LSP Completion providers 528 - cmp-nvim-lsp.enable = true; 529 - cmp-nvim-lsp-document-symbol.enable = true; 530 - 531 - # Common Spellings 532 - cmp-spell.enable = true; 533 527 534 528 # Color-coded matching symbols 535 529 rainbow-delimiters.enable = true; ··· 790 784 rust 791 785 web 792 786 c 787 + typst 793 788 ; 794 789 in { 795 790 clangd.enable = c; 791 + tinymist.enable = typst; 796 792 astro.enable = web; 797 793 hls = lib.mkIf haskell { 798 794 enable = true;