a dotfile but it's really big
0
fork

Configure Feed

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

simplify wsl install

karitham ec11d412 8c33104c

+12 -29
-16
README.md
··· 1 - # Dotfiles 2 - 3 - ## Ozen 4 - 5 - ``` 6 - ╭──────────────────┬────────────────────────────────────╮ 7 - │ kernel-name │ Linux │ 8 - │ nodename │ ozen │ 9 - │ kernel-release │ 5.15.167.4-microsoft-standard-WSL2 │ 10 - │ kernel-version │ #1 SMP Tue Nov 5 00:21:55 UTC 2024 │ 11 - │ machine │ x86_64 │ 12 - │ operating-system │ GNU/Linux │ 13 - ╰──────────────────┴────────────────────────────────────╯ 14 - ``` 15 - 16 - On a laptop that I usually use for gaming.
+5 -5
flake.lock
··· 453 453 }, 454 454 "nixpkgs_4": { 455 455 "locked": { 456 - "lastModified": 1767678781, 457 - "narHash": "sha256-YiSJkN4/H5TdLNzpcY47KrK4mILR76pPtXfgHbxXRfU=", 458 - "rev": "b16188e3a1a4ede1e261573a95fbc445df67b784", 456 + "lastModified": 1768032153, 457 + "narHash": "sha256-zvxtwlM8ZlulmZKyYCQAPpkm5dngSEnnHjmjV7Teloc=", 458 + "rev": "3146c6aa9995e7351a398e17470e15305e6e18ff", 459 459 "type": "tarball", 460 - "url": "https://releases.nixos.org/nixos/unstable-small/nixos-26.05pre923059.b16188e3a1a4/nixexprs.tar.xz?lastModified=1767678781&rev=b16188e3a1a4ede1e261573a95fbc445df67b784" 460 + "url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.05pre925418.3146c6aa9995/nixexprs.tar.xz" 461 461 }, 462 462 "original": { 463 463 "type": "tarball", 464 - "url": "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz" 464 + "url": "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz" 465 465 } 466 466 }, 467 467 "nixpkgs_5": {
+2 -2
flake.nix
··· 2 2 outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } { imports = [ ./modules ]; }; 3 3 inputs = { 4 4 # https://deer.social/profile/did:plc:mojgntlezho4qt7uvcfkdndg/post/3loogwsoqok2w 5 - # nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 6 - nixpkgs.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 5 + nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 6 + # nixpkgs.url = "https://channels.nixos.org/nixos-unstable-small/nixexprs.tar.xz"; 7 7 home-manager = { 8 8 type = "github"; 9 9 owner = "nix-community";
+5 -2
modules/dev/editor/helix.nix
··· 9 9 let 10 10 jj-patch = pkgs.fetchurl { 11 11 url = "https://patch-diff.githubusercontent.com/raw/helix-editor/helix/pull/14519.patch"; 12 - hash = "sha256-e4xaKcOhAKKYbJXhYHbjdFk6CwLubmCp+m7y//MmQFw="; 12 + hash = "sha256-L+dcrYNApgNdMH5iWDhgGnmmtmKG2s/DnxOa7Ug/dsw="; 13 13 }; 14 14 helix = inputs'.helix.packages.default.overrideAttrs (_: { 15 15 patches = jj-patch; ··· 133 133 "mode" 134 134 "spacer" 135 135 "diagnostics" 136 - "version-control" 137 136 "file-name" 138 137 "read-only-indicator" 139 138 "file-modification-indicator" 140 139 "spinner" 140 + ]; 141 + center = [ 142 + "version-control" 143 + "file-name" 141 144 ]; 142 145 right = [ 143 146 "file-encoding"
-3
modules/overlays/default.nix
··· 15 15 vendorHash = "sha256-UZNYHx5y+kRp3AJq6s4Wy+k789GDG7FBTSzCTorVjgg="; 16 16 }); 17 17 18 - # build failing because of sqlite3 node-gyp 19 - bluesky-pds = prev.bluesky-pds.override { nodejs = prev.nodejs_22; }; 20 - 21 18 # https://github.com/benbjohnson/litestream/issues/912 22 19 litestream = prev.litestream.overrideAttrs (old: { 23 20 version = "devel";
-1
systems/ozen/default.nix
··· 8 8 inherit (lib) mkForce; 9 9 in 10 10 { 11 - my.username = "nixos"; 12 11 system.stateVersion = "25.11"; 13 12 programs.ssh.startAgent = true; 14 13