From a99b01b32a5c768abac9d8e020f87d8203fe6a09 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Tue, 23 Dec 2025 13:15:49 +0530 Subject: bluetooth + a bit more catppucin --- foot/foot.ini | 2 +- hypr/hyprsunset.conf | 4 ++-- nixos/services.nix | 17 +++++++++++++++-- nvim/lua/chadrc.lua | 2 +- 4 files changed, 19 insertions(+), 6 deletions(-) diff --git a/foot/foot.ini b/foot/foot.ini index 5928177..e50902d 100644 --- a/foot/foot.ini +++ b/foot/foot.ini @@ -2,4 +2,4 @@ font=JetBrainsMono Nerd Font:size=12 [colors] -background=282828 +background=1e1d2d diff --git a/hypr/hyprsunset.conf b/hypr/hyprsunset.conf index 7bd6a1b..f76ba05 100644 --- a/hypr/hyprsunset.conf +++ b/hypr/hyprsunset.conf @@ -7,6 +7,6 @@ profile { profile { time = 21:00 - temperature = 5500 - gamma = 0.8 + temperature = 5000 + gamma = 1.0 } diff --git a/nixos/services.nix b/nixos/services.nix index b037ea8..e40f6cf 100644 --- a/nixos/services.nix +++ b/nixos/services.nix @@ -1,18 +1,31 @@ { config, pkgs, ... }: { - security.rtkit.enable = true; + hardware.bluetooth = { + enable = true; + settings.General.Enable = "Source,Sink,Media.Socket"; + settings.General.Experimental = true; + }; + systemd.user.services.mpris-proxy = { + description = "Mpris proxy"; + after = [ "network.target" "sound.target" ]; + wantedBy = [ "default.target" ]; + serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; + }; + security.rtkit.enable = true; services.xserver.xkb = { layout = "us"; variant = ""; }; + services.blueman.enable = true; services.printing.enable = true; services.pulseaudio.enable = false; - services.pipewire = { + services.pipewire = { enable = true; alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; + wireplumber.enable = true; }; services.power-profiles-daemon.enable = true; services.openssh.enable = true; diff --git a/nvim/lua/chadrc.lua b/nvim/lua/chadrc.lua index 8dfd694..9f9eecc 100644 --- a/nvim/lua/chadrc.lua +++ b/nvim/lua/chadrc.lua @@ -6,7 +6,7 @@ local M = {} M.base46 = { - theme = "gruvbox", + theme = "catppuccin", -- hl_override = { -- Comment = { italic = true }, -- cgit v1.2.3