Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

STUFF

+37 -11
+9 -9
flake.lock
··· 44 44 ] 45 45 }, 46 46 "locked": { 47 - "lastModified": 1746171682, 48 - "narHash": "sha256-EyXUNSa+H+YvGVuQJP1nZskXAowxKYp79RNUsNdQTj4=", 47 + "lastModified": 1747020534, 48 + "narHash": "sha256-D/6rkiC6w2p+4SwRiVKrWIeYzun8FBg7NlMKMwQMxO0=", 49 49 "owner": "nix-community", 50 50 "repo": "home-manager", 51 - "rev": "50eee705bbdbac942074a8c120e8194185633675", 51 + "rev": "b4bbdc6fde16fc2051fcde232f6e288cd22007ca", 52 52 "type": "github" 53 53 }, 54 54 "original": { ··· 60 60 }, 61 61 "nixpkgs": { 62 62 "locked": { 63 - "lastModified": 1746422338, 64 - "narHash": "sha256-NTtKOTLQv6dPfRe00OGSywg37A1FYqldS6xiNmqBUYc=", 63 + "lastModified": 1746957726, 64 + "narHash": "sha256-k9ut1LSfHCr0AW82ttEQzXVCqmyWVA5+SHJkS5ID/Jo=", 65 65 "owner": "nixos", 66 66 "repo": "nixpkgs", 67 - "rev": "5b35d248e9206c1f3baf8de6a7683fee126364aa", 67 + "rev": "a39ed32a651fdee6842ec930761e31d1f242cb94", 68 68 "type": "github" 69 69 }, 70 70 "original": { ··· 76 76 }, 77 77 "nixpkgs-unstable": { 78 78 "locked": { 79 - "lastModified": 1746461020, 80 - "narHash": "sha256-7+pG1I9jvxNlmln4YgnlW4o+w0TZX24k688mibiFDUE=", 79 + "lastModified": 1746904237, 80 + "narHash": "sha256-3e+AVBczosP5dCLQmMoMEogM57gmZ2qrVSrmq9aResQ=", 81 81 "owner": "nixos", 82 82 "repo": "nixpkgs", 83 - "rev": "3730d8a308f94996a9ba7c7138ede69c1b9ac4ae", 83 + "rev": "d89fc19e405cb2d55ce7cc114356846a0ee5e956", 84 84 "type": "github" 85 85 }, 86 86 "original": {
+25
home.nix
··· 32 32 tmux 33 33 coreutils 34 34 util-linux 35 + p7zip 36 + unar 35 37 36 38 unzip 37 39 fd ··· 274 276 programs.nix-index = { 275 277 enable = true; 276 278 enableFishIntegration = true; 279 + }; 280 + programs.helix = { 281 + enable = true; 282 + settings = { 283 + theme = "everforest_dark"; 284 + editor.cursor-shape = { 285 + normal = "block"; 286 + insert = "bar"; 287 + select = "underline"; 288 + }; 289 + }; 290 + languages.language = [ 291 + { 292 + name = "nix"; 293 + auto-format = true; 294 + formatter.command = "${pkgs.nixfmt}/bin/nixfmt"; 295 + } 296 + { 297 + name = "rust"; 298 + auto-format = true; 299 + formatter.command = "${pkgs.rustfmt}/bin/rustfmt"; 300 + } 301 + ]; 277 302 }; 278 303 279 304 # Independent config files.
+3 -2
vis/visrc.lua
··· 45 45 vis.events.subscribe(vis.events.WIN_OPEN, function(win) 46 46 --per-window configuration-- 47 47 --vis:command('set number') 48 - vis:command('set showtab on') 49 - vis:command('set showspace on') 48 + vis:command('set showtab off') 49 + vis:command('set showspace off') 50 50 vis:command('set autoindent on') 51 51 vis:command('set cursorline on') 52 52 vis:command('set tabwidth 4') 53 + vis:command('set expandtab on') 53 54 end) 54 55 55 56