Merge branch 'main' of github.com:bloxx12/nichts
This commit is contained in:
commit
39683ec489
6 changed files with 31 additions and 2 deletions
|
@ -34,7 +34,8 @@
|
|||
profiling = false;
|
||||
extraAliases = {
|
||||
cls = "clear";
|
||||
Hyprland = "dbus-run-session Hyprland";
|
||||
Hyprland = "dbus-run-session Hyprland";
|
||||
y = "yazi";
|
||||
};
|
||||
ohmyzsh = {
|
||||
enable = true;
|
||||
|
@ -112,6 +113,10 @@
|
|||
twingate.enable = true;
|
||||
};
|
||||
|
||||
# SSH AGENT
|
||||
programs.ssh.startAgent = true;
|
||||
services.gnome3.gnome-keyring.enable = false;
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
}
|
||||
|
|
|
@ -5,5 +5,6 @@ _: {
|
|||
../../../options/common/networking.nix
|
||||
../../../options/common/pin-registry.nix
|
||||
../../../options/common/preserve-system.nix
|
||||
../../../options/common/bluetooth.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -107,6 +107,7 @@ in {
|
|||
"$mod, o, exec, obsidian --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
|
||||
"$mod SHIFT, D, exec, webcord --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
|
||||
"$mod SHIFT, L, exec, element-desktop --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
|
||||
"$mod, v, exec, vivaldi --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
|
||||
|
||||
# Monitor management
|
||||
"$mod SHIFT, k, movecurrentworkspacetomonitor, DP-2"
|
||||
|
|
|
@ -6,5 +6,6 @@ _: {
|
|||
../../../options/common/gpu/nvidia.nix
|
||||
../../../options/common/pin-registry.nix
|
||||
../../../options/common/preserve-system.nix
|
||||
../../../options/common/bluetooth.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -56,8 +56,10 @@ in {
|
|||
xdg-utils # xdg-mime script
|
||||
webcord
|
||||
element-desktop
|
||||
swww
|
||||
swww
|
||||
toipe
|
||||
keepassxc
|
||||
vivaldi
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
19
options/common/bluetooth.nix
Normal file
19
options/common/bluetooth.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
username = config.modules.other.system.username;
|
||||
in {
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
|
||||
services.blueman.enable = true;
|
||||
|
||||
# Bluetooth headset media control buttons
|
||||
systemd.user.services.mpris-proxy = {
|
||||
description = "Mpris proxy";
|
||||
after = [ "network.target" "sound.target" ];
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue