Merge branch 'main' of ssh://gitea.xeovalyte.dev:2222/xeovalyte/nix

Merge
This commit is contained in:
xeovalyte 2024-03-16 20:45:41 +01:00
commit 4c75033249
No known key found for this signature in database
6 changed files with 29 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/system/desktop/amd.nix ../../modules/system/desktop/amd.nix
../../modules/system/desktop/hyprland.nix ../../modules/system/desktop/hyprland.nix
../../modules/system/desktop/bluetooth.nix
../../modules/system/programs/syncthing.nix ../../modules/system/programs/syncthing.nix
../../modules/system/programs/thunar.nix ../../modules/system/programs/thunar.nix
../../modules/system/programs/virtualization.nix ../../modules/system/programs/virtualization.nix

View File

@ -7,6 +7,7 @@
./hyprlock.nix ./hyprlock.nix
./fixes.nix ./fixes.nix
./hypridle.nix ./hypridle.nix
./dunst.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -30,6 +31,7 @@
exec-once = [ exec-once = [
"waybar" "waybar"
"hyprpaper" "hyprpaper"
"lxqt-policykit-agent"
]; ];
"$mod" = "SUPER"; "$mod" = "SUPER";

View File

@ -0,0 +1,7 @@
{ ... }:
{
services.dunst = {
enable = true;
};
}

View File

@ -10,5 +10,6 @@
webcord webcord
unstable.localsend unstable.localsend
bitwarden bitwarden
pavucontrol
]; ];
} }

View File

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
hardware.pulseaudio.enable = true;
services.blueman.enable = true;
}

View File

@ -27,6 +27,8 @@
pulse.enable = true; pulse.enable = true;
}; };
security.polkit.enable = true;
# Configure networking # Configure networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.wireless.iwd.enable = true; networking.wireless.iwd.enable = true;