aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2025-12-23 13:15:49 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2025-12-23 13:15:49 +0530
commita99b01b32a5c768abac9d8e020f87d8203fe6a09 (patch)
tree4cd98a90bcf5716beaa800bbeb9b09dca7524b78
parent0f99056638309e22dbf126d9bfd9e8a1101f88f7 (diff)
bluetooth + a bit more catppucin
-rw-r--r--foot/foot.ini2
-rw-r--r--hypr/hyprsunset.conf4
-rw-r--r--nixos/services.nix17
-rw-r--r--nvim/lua/chadrc.lua2
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 },