My NixOS and Home Manager configurations
10
fork

Configure Feed

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

testing maccel

quasigod a355571a d3b5a3a4

+24
+16
flake.lock
··· 251 251 "type": "github" 252 252 } 253 253 }, 254 + "maccel": { 255 + "locked": { 256 + "lastModified": 1757387438, 257 + "narHash": "sha256-H+D9fswlmEuZl58GJ2TACwr+Leoo5+KnfDQnqcAdFeA=", 258 + "owner": "Gnarus-G", 259 + "repo": "maccel", 260 + "rev": "43b624c72b04a62f55155b99c2ebe2f531abc1b9", 261 + "type": "github" 262 + }, 263 + "original": { 264 + "owner": "Gnarus-G", 265 + "repo": "maccel", 266 + "type": "github" 267 + } 268 + }, 254 269 "moonlight": { 255 270 "inputs": { 256 271 "nixpkgs": [ ··· 536 551 "home-manager": "home-manager", 537 552 "import-tree": "import-tree", 538 553 "lanzaboote": "lanzaboote", 554 + "maccel": "maccel", 539 555 "moonlight": "moonlight", 540 556 "nix-alien": "nix-alien", 541 557 "nix-cachyos-kernel": "nix-cachyos-kernel",
+2
flake.nix
··· 97 97 inputs.flake-parts.follows = "flake-parts"; 98 98 inputs.flake-compat.follows = "nix-alien/flake-compat"; 99 99 }; 100 + 101 + maccel.url = "github:Gnarus-G/maccel"; 100 102 }; 101 103 nixConfig = { 102 104 extra-substituters = [
+6
modules/hosts/hades/default.nix
··· 49 49 nixos-hardware.nixosModules.common-gpu-amd 50 50 nixos-hardware.nixosModules.common-pc-ssd 51 51 # nix-gaming.nixosModules.pipewireLowLatency 52 + maccel.nixosModules.default 52 53 ]; 53 54 54 55 hardware.amdgpu.opencl.enable = true; ··· 57 58 services = { 58 59 resolved.fallbackDns = [ ]; 59 60 fwupd.enable = true; 61 + }; 62 + 63 + hardware.maccel = { 64 + enable = true; 65 + enableCli = true; 60 66 }; 61 67 62 68 boot.kernelPackages =