me like nix
0

Configure Feed

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

fix some lints

author
Sean Aye
date (Sep 11, 2025, 11:37 AM -0400) commit d512e1a0 parent 32b99b46 change-id kkpqnzpu
+36 -7
+1
hosts/common/common.nix
··· 6 6 "nix-command" 7 7 "flakes" 8 8 ]; 9 + nix.settings.download-buffer-size = 268435456; 9 10 10 11 hardware.bluetooth.enable = true; 11 12 hardware.bluetooth.powerOnBoot = true;
+35 -7
hosts/common/home.nix
··· 21 21 bottom-right = 12.0; 22 22 }; 23 23 clip-to-geometry = true; 24 + draw-border-with-background = false; 24 25 } 25 26 ]; 26 27 layout = { ··· 421 422 automount = true; 422 423 }; 423 424 425 + catppuccin = { 426 + enable = true; 427 + flavor = "frappe"; 428 + }; 429 + 430 + programs.fuzzel.enable = true; 431 + 424 432 programs.direnv.enable = true; 425 433 426 434 programs.zellij = { ··· 494 502 enableFishIntegration = true; 495 503 }; 496 504 497 - catppuccin = { 498 - enable = true; 499 - flavor = "frappe"; 500 - }; 501 - 502 505 programs.alacritty = { 503 506 enable = true; 504 507 settings = { 505 508 window = { 506 509 decorations = "none"; 510 + opacity = 0.9; 507 511 }; 508 512 }; 509 513 ··· 552 556 languages = { 553 557 language-server.rust-analyzer = { 554 558 config = { 555 - checkOnSave = { command = "clippy"; }; 556 - cargo = { allFeatures = true; }; 559 + check = { 560 + command = "clippy"; 561 + }; 562 + checkOnSave = true; 563 + cargo = { 564 + allFeatures = true; 565 + }; 557 566 }; 558 567 }; 559 568 language = [ ··· 600 609 { 601 610 name = "json"; 602 611 auto-format = true; 612 + } 613 + { 614 + name = "just"; 615 + auto-format = true; 616 + formatter = { 617 + command = "just"; 618 + args = [ 619 + "--justfile" 620 + "/dev/stdin" 621 + "--dump" 622 + ]; 623 + }; 624 + } 625 + { 626 + name = "toml"; 627 + auto-format = true; 628 + formatter = { 629 + command = "taplo"; 630 + }; 603 631 } 604 632 ]; 605 633 };