my nixos config
0
fork

Configure Feed

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

turn the frogs gay

chfour 9a168adc 0867fad6

+97 -3
+88 -1
flake.lock
··· 18 18 "type": "github" 19 19 } 20 20 }, 21 + "flake-utils_2": { 22 + "inputs": { 23 + "systems": "systems_2" 24 + }, 25 + "locked": { 26 + "lastModified": 1731533236, 27 + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 28 + "owner": "numtide", 29 + "repo": "flake-utils", 30 + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 31 + "type": "github" 32 + }, 33 + "original": { 34 + "owner": "numtide", 35 + "repo": "flake-utils", 36 + "type": "github" 37 + } 38 + }, 39 + "flakey-profile": { 40 + "locked": { 41 + "lastModified": 1712898590, 42 + "narHash": "sha256-FhGIEU93VHAChKEXx905TSiPZKga69bWl1VB37FK//I=", 43 + "owner": "lf-", 44 + "repo": "flakey-profile", 45 + "rev": "243c903fd8eadc0f63d205665a92d4df91d42d9d", 46 + "type": "github" 47 + }, 48 + "original": { 49 + "owner": "lf-", 50 + "repo": "flakey-profile", 51 + "type": "github" 52 + } 53 + }, 21 54 "home-manager": { 22 55 "inputs": { 23 56 "nixpkgs": [ ··· 38 71 "type": "github" 39 72 } 40 73 }, 74 + "lix": { 75 + "flake": false, 76 + "locked": { 77 + "lastModified": 1737234286, 78 + "narHash": "sha256-CCKIAE84dzkrnlxJCKFyffAxP3yfsOAbdvydUGqq24g=", 79 + "rev": "2837da71ec1588c1187d2e554719b15904a46c8b", 80 + "type": "tarball", 81 + "url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/2837da71ec1588c1187d2e554719b15904a46c8b.tar.gz?rev=2837da71ec1588c1187d2e554719b15904a46c8b" 82 + }, 83 + "original": { 84 + "type": "tarball", 85 + "url": "https://git.lix.systems/lix-project/lix/archive/2.92.0.tar.gz" 86 + } 87 + }, 88 + "lix-module": { 89 + "inputs": { 90 + "flake-utils": "flake-utils", 91 + "flakey-profile": "flakey-profile", 92 + "lix": "lix", 93 + "nixpkgs": [ 94 + "nixpkgs" 95 + ] 96 + }, 97 + "locked": { 98 + "lastModified": 1737237494, 99 + "narHash": "sha256-YMLrcBpf0TR5r/eaqm8lxzFPap2TxCor0ZGcK3a7+b8=", 100 + "ref": "stable", 101 + "rev": "a3573779c9ba3d55b90aee6e9b4e70e23d34c1ba", 102 + "revCount": 127, 103 + "type": "git", 104 + "url": "https://git.lix.systems/lix-project/nixos-module" 105 + }, 106 + "original": { 107 + "ref": "stable", 108 + "type": "git", 109 + "url": "https://git.lix.systems/lix-project/nixos-module" 110 + } 111 + }, 41 112 "nixos-hardware": { 42 113 "locked": { 43 114 "lastModified": 1737751639, ··· 101 172 "root": { 102 173 "inputs": { 103 174 "home-manager": "home-manager", 175 + "lix-module": "lix-module", 104 176 "nixos-hardware": "nixos-hardware", 105 177 "nixpkgs": "nixpkgs", 106 178 "nixpkgs-master": "nixpkgs-master", ··· 122 194 "type": "github" 123 195 } 124 196 }, 197 + "systems_2": { 198 + "locked": { 199 + "lastModified": 1681028828, 200 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 201 + "owner": "nix-systems", 202 + "repo": "default", 203 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 204 + "type": "github" 205 + }, 206 + "original": { 207 + "owner": "nix-systems", 208 + "repo": "default", 209 + "type": "github" 210 + } 211 + }, 125 212 "website": { 126 213 "inputs": { 127 - "flake-utils": "flake-utils", 214 + "flake-utils": "flake-utils_2", 128 215 "nixpkgs": "nixpkgs_2" 129 216 }, 130 217 "locked": {
+9 -2
flake.nix
··· 4 4 5 5 nixpkgs-master.url = "github:NixOS/nixpkgs/master"; 6 6 7 + lix-module = { 8 + type = "git"; 9 + url = "https://git.lix.systems/lix-project/nixos-module"; 10 + ref = "stable"; 11 + inputs.nixpkgs.follows = "nixpkgs"; 12 + }; 13 + 7 14 nixos-hardware.url = "github:NixOS/nixos-hardware/master"; 8 15 9 16 home-manager = { ··· 14 21 website.url = "github:chfour/website3/main"; 15 22 }; 16 23 17 - outputs = { self, nixpkgs, nixpkgs-master, nixos-hardware, home-manager, website, ... }: { 24 + outputs = { self, nixpkgs, nixpkgs-master, lix-module, nixos-hardware, home-manager, website, ... }: { 18 25 nixosModules = { 19 26 declarativeHome = { ... }: { 20 27 imports = [ home-manager.nixosModules.home-manager ]; ··· 24 31 }; 25 32 }; 26 33 defaults = { ... }: { 34 + imports = [ lix-module.nixosModules.default ]; 27 35 nixpkgs.config.allowUnfree = true; 28 36 nix.settings = { 29 37 experimental-features = [ "nix-command" "flakes" ]; ··· 54 62 defaults 55 63 ./machines/fovps 56 64 declarativeHome ./users/chfour 57 - minecraft 58 65 ]; 59 66 }; 60 67 };