This commit is contained in:
2024-05-10 14:52:56 +02:00
parent e5cd70ffa5
commit f02953fe05
19 changed files with 632 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
{
# Import general Configs
imports = [ ./configuration.nix ];
imports = [ ./../hardware-configuration-desktop.nix ./../configuration.nix ];
# Hostname
networking.hostName = "eliasDesktop";

View File

@@ -2,7 +2,7 @@
{
# Import general Configs
imports = [ ./../configuration.nix ];
imports = [ ./../hardware-configuration-laptop.nix ./../configuration.nix ];
# Hostname
networking.hostName = "eliasLaptop";
@@ -15,5 +15,16 @@
Experimental = true;
};
};
environment.systemPackages = with pkgs; [
bluez
bluez-alsa
bluez-tools
gnome.networkmanager-vpnc
networkmanagerapplet
];
hardware.pulseaudio.extraConfig = ''
load-module module-bluetooth-policy
load-module module-bluetooth-discover
'';
services.blueman.enable = true;
}