initial commit

This commit is contained in:
gpskwlkr 2024-03-24 23:16:17 +04:00
commit 07d4f917bd
83 changed files with 3762 additions and 0 deletions

13
system/hardware.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
hardware = {
bluetooth.enable = true;
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
};
}