diff --git a/modules/home-manager/hyprpaper.nix b/modules/home-manager/hyprpaper.nix index b5cf9ee..3040352 100644 --- a/modules/home-manager/hyprpaper.nix +++ b/modules/home-manager/hyprpaper.nix @@ -16,7 +16,6 @@ ]; }; - # Safe access with fallback selected_wallpaper = builtins.elemAt (wallpapers.${cfg.theme}) 0; selected_wallpaper_path = "~/Pictures/Wallpapers/${selected_wallpaper}"; in { diff --git a/modules/nixos/1password.nix b/modules/nixos/1password.nix index 42b178a..888ab23 100644 --- a/modules/nixos/1password.nix +++ b/modules/nixos/1password.nix @@ -1,7 +1,4 @@ -{..., config}: let - -cfg = config.omarchy; -in { +{...}: { programs = { _1password.enable = true; _1password-gui.enable = true; diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index 202b3f4..20dcb26 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -2,12 +2,10 @@ config, pkgs, ... -}: - let +}: let cfg = config.omarchy; - packages = import ../packages.nix { inherit pkgs; }; + packages = import ../packages.nix {inherit pkgs;}; in { - security.rtkit.enable = true; services.pulseaudio.enable = false; services.pipewire = { @@ -26,16 +24,18 @@ in { # Install packages environment.systemPackages = packages.systemPackages; - # Networking + # Networking services.resolved.enable = true; + hardware.bluetooth.enable = true; + services.blueman.enable = true; networking = { hostName = cfg.hostname; networkmanager.enable = true; }; - fonts.packages = with pkgs; [ - noto-fonts - noto-fonts-emoji - nerd-fonts.caskaydia-mono - ]; + fonts.packages = with pkgs; [ + noto-fonts + noto-fonts-emoji + nerd-fonts.caskaydia-mono + ]; } diff --git a/modules/themes.nix b/modules/themes.nix index 8bce256..5abb596 100644 --- a/modules/themes.nix +++ b/modules/themes.nix @@ -113,7 +113,7 @@ primary_variant = "#7fb4ca"; secondary = "#957fb8"; accent = "#938aa9"; - + # Status colors success = "#76946a"; warning = "#c0a36e";