chore fixes and gaming

This commit is contained in:
Zoty 2026-06-27 07:44:09 -03:00
parent 91c08fcab7
commit 7ac1e734e7
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
7 changed files with 36 additions and 62 deletions

View file

@ -33,11 +33,15 @@
outputs = inputs:
let
system = "x86_64-linux";
pkgs = inputs.nixpkgs.legacyPackages.${system};
system = "x86_64-linux";
pkgs = inputs.nixpkgs.legacyPackages.${system};
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
flake = (inputs.nixpkgs.lib.evalModules {
modules = [ (inputs.import-tree ./modules) ];
specialArgs.inputs = inputs;
specialArgs = { inherit inputs pkgs-unstable; };
}).config.flake;
in flake // {
nixosConfigurations = flake.nixosConfigurations // {