This commit is contained in:
Frost-Phoenix 2024-06-23 16:33:59 +02:00
parent d0d2a3ad03
commit 27247998b6
2 changed files with 27 additions and 25 deletions

View file

@ -132,11 +132,11 @@
]
},
"locked": {
"lastModified": 1718788307,
"narHash": "sha256-SqiOz0sljM0GjyQEVinPXQxaGcbOXw5OgpCWGPgh/vo=",
"lastModified": 1719037157,
"narHash": "sha256-aOKd8+mhBsLQChCu1mn/W5ww79ta5cXVE59aJFrifM8=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "d7830d05421d0ced83a0f007900898bdcaf2a2ca",
"rev": "cd886711998fe5d9ff7979fdd4b4cbd17b1f1511",
"type": "github"
},
"original": {
@ -203,11 +203,11 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1718835324,
"narHash": "sha256-U5eKTPAXppfSIqKqMIgbyuTBy1gr2seSOUl8sUSR8FE=",
"lastModified": 1719148310,
"narHash": "sha256-wxVUSGRYlAFToeMsJ4lTSSIC2zB4leT06cVS4pt0lQo=",
"ref": "refs/heads/main",
"rev": "fabc30df52ab5d2c369fc8acd4ff909a6ba3b8ac",
"revCount": 4870,
"rev": "315f16d501f38d6bc743fca359d13b655c4a970d",
"revCount": 4877,
"submodules": true,
"type": "git",
"url": "https://github.com/hyprwm/Hyprland"
@ -348,11 +348,11 @@
"nixpkgs": "nixpkgs_5"
},
"locked": {
"lastModified": 1718871502,
"narHash": "sha256-pOsj+MqFxamssbCtvUcgDR1W4hDbHPrvJyjRksBTxok=",
"lastModified": 1719105588,
"narHash": "sha256-BXyXbrbsU90S0T4ruNx0q26ITfJCeXk5Qix6KVVKQLw=",
"owner": "fufexan",
"repo": "nix-gaming",
"rev": "cc571440e499e95f962b2bccaa5850aea33bdcd4",
"rev": "e952ecaae2066e0b942921684437da3d9f4f056d",
"type": "github"
},
"original": {
@ -439,11 +439,11 @@
},
"nixpkgs_5": {
"locked": {
"lastModified": 1718276985,
"narHash": "sha256-u1fA0DYQYdeG+5kDm1bOoGcHtX0rtC7qs2YA2N1X++I=",
"lastModified": 1718983919,
"narHash": "sha256-+1xgeIow4gJeiwo4ETvMRvWoircnvb0JOt7NS9kUhoM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "3f84a279f1a6290ce154c5531378acc827836fbb",
"rev": "90338afd6177fc683a04d934199d693708c85a3b",
"type": "github"
},
"original": {
@ -455,11 +455,11 @@
},
"nixpkgs_6": {
"locked": {
"lastModified": 1718714799,
"narHash": "sha256-FUZpz9rg3gL8NVPKbqU8ei1VkPLsTIfAJ2fdAf5qjak=",
"lastModified": 1719075281,
"narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c00d587b1a1afbf200b1d8f0b0e4ba9deb1c7f0e",
"rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af",
"type": "github"
},
"original": {
@ -471,11 +471,11 @@
},
"nur": {
"locked": {
"lastModified": 1718915302,
"narHash": "sha256-BTVehDhpmQx/zcZauJzWz0EhqXdBeEj5ylfibO+F++E=",
"lastModified": 1719146312,
"narHash": "sha256-oueSq8thT3fFRqUMTab3zWJ6kb+AMiz0UKYXK9mY7gI=",
"owner": "nix-community",
"repo": "NUR",
"rev": "a4cf34469a6f2592521b4b609bcf2393694891fb",
"rev": "df3679b280597ef85c72c1ecdf1ba04668be1554",
"type": "github"
},
"original": {

View file

@ -1,10 +1,12 @@
{ pkgs, ... }:
{
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
hardware.enableRedistributableFirmware = true;
hardware.opengl.extraPackages = with pkgs; [
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
];
];
};
};
hardware.enableRedistributableFirmware = true;
}