This commit is contained in:
Lilith 2024-06-12 20:37:03 +02:00
parent 3c44ab3bbe
commit dd7fdc2855
Signed by: lilith
GPG key ID: 8712A0F317C37175
4 changed files with 8 additions and 3 deletions

View file

@ -7,6 +7,7 @@
./bluetooth.nix
./btrfs.nix
./fonts.nix
./hardware.nix
./nix.nix
./nfs.nix
./users.nix

3
system/hardware.nix Normal file
View file

@ -0,0 +1,3 @@
{...}: {
hardware.i2c.enable = true;
}

View file

@ -1,5 +1,4 @@
{pkgs, ...}: {
environment.packages = with pkgs; [
gnome-bluetooth
environment.systemPackages = with pkgs; [
];
}