this repo has no description
4
fork

Configure Feed

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

new styling

+51 -26
+18 -18
flake.lock
··· 510 510 "rust-overlay": "rust-overlay_3" 511 511 }, 512 512 "locked": { 513 - "lastModified": 1680751757, 514 - "narHash": "sha256-da6qOFIbmm8PBrW4JVSlXi15azHxw2SgidIx9jMmP8s=", 513 + "lastModified": 1681141923, 514 + "narHash": "sha256-PNHLOW1AQRd6PU2BoiGw8w1LWvCp5842sE4w1hfcAao=", 515 515 "owner": "helix-editor", 516 516 "repo": "helix", 517 - "rev": "fc4ca96c2986bc875f1fc6e2cb164dcaf4f4a09c", 517 + "rev": "686a1e2f311932c2fcfeee6e8384ab8ce959d618", 518 518 "type": "github" 519 519 }, 520 520 "original": { ··· 531 531 "utils": "utils" 532 532 }, 533 533 "locked": { 534 - "lastModified": 1680597706, 535 - "narHash": "sha256-ZqJ3T+BxzjPH9TnmeUwS4Uu9ZQPeBXAFC9sUWlharT4=", 534 + "lastModified": 1681127522, 535 + "narHash": "sha256-Eo4dd0AmKshM+A6msQRMwT42QvWGNxa8RjmZ4tY7g9E=", 536 536 "owner": "nix-community", 537 537 "repo": "home-manager", 538 - "rev": "ec06f419af79207b33d797064dfb3fc9dbe1df4a", 538 + "rev": "93f5cb2482dd20e57eb8ca6c819cdad9738f98a0", 539 539 "type": "github" 540 540 }, 541 541 "original": { ··· 676 676 }, 677 677 "nixos-hardware": { 678 678 "locked": { 679 - "lastModified": 1680070330, 680 - "narHash": "sha256-aoT2YZCd9LEtiEULFLIF0ykKydgE72X8gw/k9/pRS5I=", 679 + "lastModified": 1680876084, 680 + "narHash": "sha256-eP9yxP0wc7XuVaODugh+ajgbFGaile2O1ihxiLxOuvU=", 681 681 "owner": "nixos", 682 682 "repo": "nixos-hardware", 683 - "rev": "a6aa8174fa61e55bd7e62d35464d3092aefe0421", 683 + "rev": "3006d2860a6ed5e01b0c3e7ffb730e9b293116e2", 684 684 "type": "github" 685 685 }, 686 686 "original": { ··· 759 759 "nixpkgs-wayland": { 760 760 "flake": false, 761 761 "locked": { 762 - "lastModified": 1680723078, 763 - "narHash": "sha256-PJdW2c+7CSPebkr5wuNh1GjzYVlM97Aix3pipHBm+JY=", 762 + "lastModified": 1681139493, 763 + "narHash": "sha256-vNoib7DtiVLeMrn2Pu3YyH0IHesR6z9lT52313BO8iA=", 764 764 "owner": "nix-community", 765 765 "repo": "nixpkgs-wayland", 766 - "rev": "1053de6c3ad791811087bc798ae2b0948184c24e", 766 + "rev": "38c71d36f86f8410a5d4e191b196ed6ec09504c7", 767 767 "type": "github" 768 768 }, 769 769 "original": { ··· 805 805 }, 806 806 "nixpkgs_3": { 807 807 "locked": { 808 - "lastModified": 1680669251, 809 - "narHash": "sha256-AVNE+0u4HlI3v96KCXE9risH7NKqj0QDLLfSckYXIbA=", 808 + "lastModified": 1681036984, 809 + "narHash": "sha256-AbScJXshYzbeUKHh+Y3OICc3iAtr+NqJ3Xb81GW+ptU=", 810 810 "owner": "nixos", 811 811 "repo": "nixpkgs", 812 - "rev": "9c8ff8b426a8b07b9e0a131ac3218740dc85ba1e", 812 + "rev": "fd531dee22c9a3d4336cc2da39e8dd905e8f3de4", 813 813 "type": "github" 814 814 }, 815 815 "original": { ··· 821 821 }, 822 822 "nur": { 823 823 "locked": { 824 - "lastModified": 1680754279, 825 - "narHash": "sha256-Fg87INxT7Z9FSqKUzz+s8Uj4OlbmoLV4jdgyVY4CTuk=", 824 + "lastModified": 1681151175, 825 + "narHash": "sha256-3RmW7n3KniHutKLah1MrqzEfSWJZkyN+nTq1U+oZn8U=", 826 826 "owner": "nix-community", 827 827 "repo": "NUR", 828 - "rev": "67892cbc59ae24528f5a3bb3faa97c478290b76a", 828 + "rev": "2e608fa1d533ac085adb44169ab14c9da5e98893", 829 829 "type": "github" 830 830 }, 831 831 "original": {
+12 -7
users/modules/helix/default.nix
··· 15 15 name = "nix"; 16 16 language-server = {command = "${inputs.nil.packages.${pkgs.system}.default}/bin/nil";}; 17 17 } 18 - { 19 - name = "rust"; 20 - language-server = {command = "${pkgs.rust-analyzer}/bin/rust-analyzer";}; 21 - } 22 18 ]; 23 19 settings = { 24 20 editor = { 21 + soft-wrap.enable = true; 25 22 line-number = "relative"; 26 23 middle-click-paste = false; 27 24 true-color = true; 28 25 whitespace.render = "all"; 29 - cursor-shape.insert = "bar"; 30 - lsp.display-messages = true; 26 + cursor-shape.insert = "block"; 27 + lsp = { 28 + display-messages = true; 29 + display-inlay-hints = true; 30 + }; 31 31 indent-guides = { 32 32 render = true; 33 - character = "|"; 33 + # character = "|"; 34 34 }; 35 35 auto-pairs = { 36 36 "(" = ")"; ··· 39 39 "\"" = "\""; 40 40 "'" = "'"; 41 41 "<" = ">"; 42 + }; 43 + statusline = { 44 + left = ["mode" "spinner"]; 45 + center = ["file-name" "file-encoding" "separator" "version-control"]; 46 + right = ["diagnostics" "selections"]; 42 47 }; 43 48 }; 44 49 };
+21 -1
users/patriot/stylix.nix
··· 4 4 pkgs, 5 5 ... 6 6 }: { 7 - imports = [inputs.stylix.nixosModules.stylix]; 7 + imports = [ 8 + inputs.stylix.nixosModules.stylix 9 + ]; 8 10 9 11 stylix.image = ./wallpaper.png; 10 12 stylix.polarity = "dark"; 13 + stylix.base16Scheme = { 14 + "base00" = "191a16"; 15 + "base01" = "20211c"; 16 + "base02" = "24251f"; # splatoon 3 dark background 17 + "base03" = "50514c"; 18 + "base04" = "7c7c79"; 19 + "base05" = "a7a8a5"; 20 + "base06" = "d3d3d2"; 21 + "base07" = "ffffff"; 22 + "base08" = "cf0466"; # splatoon 2 pink 23 + "base09" = "2851f6"; # splatoon 1 blue 24 + "base0A" = "6844e6"; # splatoon 3 purple 25 + "base0B" = "17a80d"; # splatoon 2 green 26 + "base0C" = "fea972"; # splatoon 3 fuzzy orange color 27 + "base0D" = "fa5a00"; # splatoon 1 orange 28 + "base0E" = "fffe27"; # splatoon 3 yellow 29 + "base0F" = "bdbebc"; 30 + }; 11 31 12 32 stylix.fonts = { 13 33 serif = {
users/patriot/wallpaper.png

This is a binary file and will not be displayed.