Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

feat(loki): add just

This thing may be move to a shell.nix in the future

cosmeak 1fb04490 0958db3e

+87
+72
flake.lock
··· 20 20 "type": "github" 21 21 } 22 22 }, 23 + "flake-compat": { 24 + "flake": false, 25 + "locked": { 26 + "lastModified": 1696426674, 27 + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", 28 + "owner": "edolstra", 29 + "repo": "flake-compat", 30 + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", 31 + "type": "github" 32 + }, 33 + "original": { 34 + "owner": "edolstra", 35 + "repo": "flake-compat", 36 + "type": "github" 37 + } 38 + }, 39 + "flake-utils": { 40 + "inputs": { 41 + "systems": "systems" 42 + }, 43 + "locked": { 44 + "lastModified": 1726560853, 45 + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", 46 + "owner": "numtide", 47 + "repo": "flake-utils", 48 + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", 49 + "type": "github" 50 + }, 51 + "original": { 52 + "owner": "numtide", 53 + "repo": "flake-utils", 54 + "type": "github" 55 + } 56 + }, 23 57 "home-manager": { 24 58 "inputs": { 25 59 "nixpkgs": [ ··· 41 75 "type": "github" 42 76 } 43 77 }, 78 + "nixos-wsl": { 79 + "inputs": { 80 + "flake-compat": "flake-compat", 81 + "flake-utils": "flake-utils", 82 + "nixpkgs": [ 83 + "nixpkgs" 84 + ] 85 + }, 86 + "locked": { 87 + "lastModified": 1729717678, 88 + "narHash": "sha256-XEfYT1D+4KT9c0mMwsmZdWS2JgKsboAZbnuJvrjBQKg=", 89 + "owner": "nix-community", 90 + "repo": "NixOS-WSL", 91 + "rev": "5a965cb108fb1f30b29a26dbc29b473f49e80b41", 92 + "type": "github" 93 + }, 94 + "original": { 95 + "owner": "nix-community", 96 + "repo": "NixOS-WSL", 97 + "type": "github" 98 + } 99 + }, 44 100 "nixpkgs": { 45 101 "locked": { 46 102 "lastModified": 1729449015, ··· 77 133 "inputs": { 78 134 "darwin": "darwin", 79 135 "home-manager": "home-manager", 136 + "nixos-wsl": "nixos-wsl", 80 137 "nixpkgs": "nixpkgs", 81 138 "nixpkgs-unstable": "nixpkgs-unstable" 139 + } 140 + }, 141 + "systems": { 142 + "locked": { 143 + "lastModified": 1681028828, 144 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 145 + "owner": "nix-systems", 146 + "repo": "default", 147 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 148 + "type": "github" 149 + }, 150 + "original": { 151 + "owner": "nix-systems", 152 + "repo": "default", 153 + "type": "github" 82 154 } 83 155 } 84 156 },
+2
hosts/loki/configuration.nix
··· 75 75 vesktop 76 76 zip 77 77 unzip 78 + termius 79 + just 78 80 ]; 79 81 }; 80 82
+13
justfile
··· 1 + default: 2 + @just --list 3 + 4 + nixos-switch: 5 + sudo nixos-rebuild switch --flake . 6 + 7 + darwin-switch: 8 + sudo darwin-rebuild switch --flake . 9 + 10 + clean: 11 + nix-store --optimize 12 + nix-collect-garbage -d 13 + sudo nix-collect-garbage -d