diff --git a/configs/xmonad.nix b/configs/xmonad.nix index d623a89..9e3d5a5 100644 --- a/configs/xmonad.nix +++ b/configs/xmonad.nix @@ -17,6 +17,7 @@ mpc_cli pulsemixer feh + xorg.xbacklight xorg.xinit xorg.xwininfo xorg.xkill diff --git a/hosts/work-laptop/configuration.nix b/hosts/work-laptop/configuration.nix index f80c1a0..cd3cd43 100644 --- a/hosts/work-laptop/configuration.nix +++ b/hosts/work-laptop/configuration.nix @@ -10,7 +10,7 @@ boot.loader.efi.canTouchEfiVariables = true; networking = { - hostName = "thebeast"; + hostName = "froidmpa-linux"; networkmanager.enable = true; }; @@ -35,9 +35,14 @@ services.openssh.enable = true; services.openssh.permitRootLogin = "yes"; + services.blueman.enable = true; home-manager.users.froidmpa = {pkgs, config, ...}: { + home.packages = with pkgs; [ + slack-dark + ]; services.network-manager-applet.enable = true; + services.blueman-applet.enable = true; }; # Enable touchpad support. services.xserver.libinput.enable = true;