Switched hw acceleration to enhance chromium UX

This commit is contained in:
2025-07-12 19:58:19 +03:00
parent c2ce919b9e
commit a648f87a1e
6 changed files with 61 additions and 41 deletions

View File

@@ -8,12 +8,16 @@
# Add other flake inputs if needed
};
outputs = { self, nixpkgs, ... }@inputs: {
outputs = {
self,
nixpkgs,
...
} @ inputs: {
nixosConfigurations = {
puter = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/puter/default.nix ];
specialArgs = { inherit inputs; };
modules = [./hosts/puter/default.nix];
specialArgs = {inherit inputs;};
};
};
};