mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-12 04:49:57 -05:00
Bluetooth
This commit is contained in:
@@ -16,7 +16,6 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Safe access with fallback
|
|
||||||
selected_wallpaper = builtins.elemAt (wallpapers.${cfg.theme}) 0;
|
selected_wallpaper = builtins.elemAt (wallpapers.${cfg.theme}) 0;
|
||||||
selected_wallpaper_path = "~/Pictures/Wallpapers/${selected_wallpaper}";
|
selected_wallpaper_path = "~/Pictures/Wallpapers/${selected_wallpaper}";
|
||||||
in {
|
in {
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
{..., config}: let
|
{...}: {
|
||||||
|
|
||||||
cfg = config.omarchy;
|
|
||||||
in {
|
|
||||||
programs = {
|
programs = {
|
||||||
_1password.enable = true;
|
_1password.enable = true;
|
||||||
_1password-gui.enable = true;
|
_1password-gui.enable = true;
|
||||||
|
|||||||
+10
-10
@@ -2,12 +2,10 @@
|
|||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}: let
|
||||||
let
|
|
||||||
cfg = config.omarchy;
|
cfg = config.omarchy;
|
||||||
packages = import ../packages.nix { inherit pkgs; };
|
packages = import ../packages.nix {inherit pkgs;};
|
||||||
in {
|
in {
|
||||||
|
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
services.pulseaudio.enable = false;
|
services.pulseaudio.enable = false;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
@@ -26,16 +24,18 @@ in {
|
|||||||
# Install packages
|
# Install packages
|
||||||
environment.systemPackages = packages.systemPackages;
|
environment.systemPackages = packages.systemPackages;
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
services.resolved.enable = true;
|
services.resolved.enable = true;
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
|
services.blueman.enable = true;
|
||||||
networking = {
|
networking = {
|
||||||
hostName = cfg.hostname;
|
hostName = cfg.hostname;
|
||||||
networkmanager.enable = true;
|
networkmanager.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
noto-fonts
|
noto-fonts
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
nerd-fonts.caskaydia-mono
|
nerd-fonts.caskaydia-mono
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -113,7 +113,7 @@
|
|||||||
primary_variant = "#7fb4ca";
|
primary_variant = "#7fb4ca";
|
||||||
secondary = "#957fb8";
|
secondary = "#957fb8";
|
||||||
accent = "#938aa9";
|
accent = "#938aa9";
|
||||||
|
|
||||||
# Status colors
|
# Status colors
|
||||||
success = "#76946a";
|
success = "#76946a";
|
||||||
warning = "#c0a36e";
|
warning = "#c0a36e";
|
||||||
|
|||||||
Reference in New Issue
Block a user