this repo has no description
4
fork

Configure Feed

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

zamn

+37 -31
+15 -15
flake.lock
··· 119 119 "rust-overlay": "rust-overlay" 120 120 }, 121 121 "locked": { 122 - "lastModified": 1656906257, 123 - "narHash": "sha256-+vM3IYpFUOr/uECKHsDLV5Y/1ngE4X2KDRjJ0tQdkDQ=", 122 + "lastModified": 1657470464, 123 + "narHash": "sha256-eMA+/7XzUJpCuDJZRPc/0OMWA6CNisDLSZh3bFYCybo=", 124 124 "owner": "helix-editor", 125 125 "repo": "helix", 126 - "rev": "e58d28a9728fd5d451c98c48bd20c57fb9eec7dc", 126 + "rev": "0cb0c306183be94b9d42c3fae22b805850f87584", 127 127 "type": "github" 128 128 }, 129 129 "original": { ··· 140 140 "utils": "utils" 141 141 }, 142 142 "locked": { 143 - "lastModified": 1656927578, 144 - "narHash": "sha256-ZSFrM/1PlJOqCb3mN88ZUh9dkQvNLU/nkoQ2tu02/FM=", 143 + "lastModified": 1657396086, 144 + "narHash": "sha256-4cQ6hEuewWoFkTBlu211JGxPQQ1Zyli8oEq1cu7cVeA=", 145 145 "owner": "nix-community", 146 146 "repo": "home-manager", 147 - "rev": "f2445620d177e295e711c1b2bc6c01ed6df26c16", 147 + "rev": "c645cc9f82c7753450d1fa4d1bc73b64960a9d7a", 148 148 "type": "github" 149 149 }, 150 150 "original": { ··· 162 162 "wlroots": "wlroots" 163 163 }, 164 164 "locked": { 165 - "lastModified": 1656950133, 166 - "narHash": "sha256-FerRg4+W3Xy+MVBmSBBERLFuJ0YWPWKf7fcL3k3TqLE=", 165 + "lastModified": 1657572680, 166 + "narHash": "sha256-NOy0iHEnOcL5yAA7fWXni++axbNSFaYDxLeAkmPtZaY=", 167 167 "owner": "hyprwm", 168 168 "repo": "Hyprland", 169 - "rev": "beef23cee5cdc47142da50bf029f52bdff192025", 169 + "rev": "676e4c36c53c991f6950a0c51fbe7b41ee9a4db2", 170 170 "type": "github" 171 171 }, 172 172 "original": { ··· 234 234 }, 235 235 "nixpkgs": { 236 236 "locked": { 237 - "lastModified": 1656753965, 238 - "narHash": "sha256-BCrB3l0qpJokOnIVc3g2lHiGhnjUi0MoXiw6t1o8H1E=", 237 + "lastModified": 1657447684, 238 + "narHash": "sha256-FCP9AuU1q6PE3vOeM5SFf58f/UKPBAsoSGDUGamNBbo=", 239 239 "owner": "nixos", 240 240 "repo": "nixpkgs", 241 - "rev": "0ea7a8f1b939d74e5df8af9a8f7342097cdf69eb", 241 + "rev": "5f43d8b088d3771274bcfb69d3c7435b1121ac88", 242 242 "type": "github" 243 243 }, 244 244 "original": { ··· 250 250 }, 251 251 "nur": { 252 252 "locked": { 253 - "lastModified": 1656928701, 254 - "narHash": "sha256-fQWedhQM0NuxgEE7ZRxjRPkXxZocYxSAsjg8xrQ4xzU=", 253 + "lastModified": 1657563923, 254 + "narHash": "sha256-gvouxQe93ynZzlUWBxGbk7TJRzAQ5w3wiyNRYODiFJM=", 255 255 "owner": "nix-community", 256 256 "repo": "NUR", 257 - "rev": "9c99082a18ebf177d7210aa391bff308027b9cbc", 257 + "rev": "ba9415d7c8ad896048d4d54d770f2d0c45791d1a", 258 258 "type": "github" 259 259 }, 260 260 "original": {
+1 -1
hosts/lungmen/default.nix
··· 70 70 algorithm = "zstd"; 71 71 }; 72 72 73 - nix.maxJobs = lib.mkDefault 4; 73 + nix.settings.max-jobs = lib.mkDefault 4; 74 74 security = { 75 75 pam.loginLimits = [ 76 76 {
+6 -4
modules/base/nix.nix
··· 20 20 extra-experimental-features = nix-command flakes 21 21 builders-use-substitutes = true 22 22 ''; 23 - useSandbox = true; 24 - allowedUsers = ["@wheel"]; 25 - trustedUsers = ["root" "@wheel"]; 26 - autoOptimiseStore = true; 27 23 nixPath = ["nixpkgs=${inputs.nixpkgs}" "home-manager=${inputs.home}"]; 24 + }; 25 + nix.settings = { 26 + sandbox = true; 27 + allowed-users = ["@wheel"]; 28 + trusted-users = ["root" "@wheel"]; 29 + auto-optimise-store = true; 28 30 }; 29 31 }
+1 -1
modules/cachix/default.nix
··· 9 9 imports = lib.mapAttrsToList toImport (lib.filterAttrs filterCaches (builtins.readDir folder)); 10 10 in { 11 11 inherit imports; 12 - nix.binaryCaches = ["https://cache.nixos.org/"]; 12 + nix.settings.substituters = ["https://cache.nixos.org/"]; 13 13 }
+3 -3
modules/cachix/helix.nix
··· 1 1 { 2 - nix = { 3 - binaryCaches = ["https://helix.cachix.org"]; 4 - binaryCachePublicKeys = ["helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="]; 2 + nix.settings = { 3 + substituters = ["https://helix.cachix.org"]; 4 + trusted-public-keys = ["helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="]; 5 5 }; 6 6 }
+3 -3
modules/cachix/nix-community.nix
··· 1 1 { 2 - nix = { 3 - binaryCaches = ["https://nix-community.cachix.org"]; 4 - binaryCachePublicKeys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; 2 + nix.settings = { 3 + substituters = ["https://nix-community.cachix.org"]; 4 + trusted-public-keys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; 5 5 }; 6 6 }
+8 -4
users/patriot/default.nix
··· 41 41 # this is needed for impermanence 42 42 fuse.userAllowOther = true; 43 43 adb.enable = true; 44 - steam.enable = true; 44 + steam.enable = false; 45 + kdeconnect.enable = true; 45 46 # gnome stuffs 46 47 seahorse.enable = true; 47 48 hyprland.enable = true; ··· 97 98 "Downloads" 98 99 "proj" 99 100 # "smos" 100 - ".steam" 101 + # ".steam" 101 102 ".wine" 102 103 # ssh / gpg / keys 103 104 ".ssh" ··· 111 112 ++ mkPaths ".local/share" [ 112 113 "direnv" 113 114 "zsh" 114 - "Steam" 115 + # "Steam" 115 116 "keyrings" 116 117 "lutris" 117 118 "PolyMC" ··· 119 120 ++ mkPaths ".config" [ 120 121 "lutris" 121 122 "discord" 123 + "kdeconnect" 122 124 ]; 123 125 files = l.flatten [ 124 126 ".config/wallpaper" ··· 172 174 # polymc 173 175 cloudflared 174 176 lutris 175 - (pkgs.callPackage pkgs.discord.override {withOpenASAR = true;}) 177 + (pkgs.discord.override { 178 + withOpenASAR = true; 179 + }) 176 180 ]; 177 181 shellAliases = 178 182 nixosConfig.environment.shellAliases