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

@ -4,7 +4,9 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
libdbusmenu-gtk3 libdbusmenu-gtk3
networkmanager networkmanager
pipewire-pulse gnome.gnome-bluetooth
ddcutil
]; ];
programs.ags = { programs.ags = {

View file

@ -7,6 +7,7 @@
./bluetooth.nix ./bluetooth.nix
./btrfs.nix ./btrfs.nix
./fonts.nix ./fonts.nix
./hardware.nix
./nix.nix ./nix.nix
./nfs.nix ./nfs.nix
./users.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, ...}: { {pkgs, ...}: {
environment.packages = with pkgs; [ environment.systemPackages = with pkgs; [
gnome-bluetooth
]; ];
} }