summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2025-01-23 09:10:01 -0500
committerAndrew Opalach <andrew@akon.city> 2025-01-23 09:10:01 -0500
commita135ec293eab8e7c9e5f581dc70cd5cf2bea587a (patch)
treea883c0c879bcbd9052ae0cac31b81ade94551507 /nix
parentdce9ab07ae0b0496e432f213466fd6f442944fa7 (diff)
downloaddotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.tar.gz
dotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.tar.bz2
dotfiles-a135ec293eab8e7c9e5f581dc70cd5cf2bea587a.zip
Go back to stable wayland and mesa
Diffstat (limited to 'nix')
-rw-r--r--nix/gaming.nix2
-rw-r--r--nix/programs/firefox.nix4
-rw-r--r--nix/programs/kitty.nix2
-rw-r--r--nix/user.nix27
4 files changed, 31 insertions, 4 deletions
diff --git a/nix/gaming.nix b/nix/gaming.nix
index bc61623..4c8687c 100644
--- a/nix/gaming.nix
+++ b/nix/gaming.nix
@@ -17,7 +17,7 @@ in {
dolphin-emu
pcsx2
(ppsspp.override { enableQt = true; })
- cemu
+ #cemu
rpcs3
ryujinx
osu-lazer-bin
diff --git a/nix/programs/firefox.nix b/nix/programs/firefox.nix
index 07da144..69bf0c6 100644
--- a/nix/programs/firefox.nix
+++ b/nix/programs/firefox.nix
@@ -19,8 +19,8 @@ in {
source = (pkgs.fetchFromGitHub {
owner = "rafaelmardojai";
repo = "firefox-gnome-theme";
- rev = "a5029a0797d9ab4d5a20f223cacddd70e3748dc8";
- hash = "sha256-mRE/foGagh2XarMerOXtgldpxiCb/dQa7tHOpPpP2Zw=";
+ rev = "91ca1f82d717b02ceb03a3f423cbe8082ebbb26d";
+ hash = "sha256-S79Hqn2EtSxU4kp99t8tRschSifWD4p/51++0xNWUxw=";
});
};
home.file."customChrome.css" = {
diff --git a/nix/programs/kitty.nix b/nix/programs/kitty.nix
index 149d751..0ab75c6 100644
--- a/nix/programs/kitty.nix
+++ b/nix/programs/kitty.nix
@@ -34,7 +34,7 @@ in {
cursor_shape block
cursor_blink_interval -1 linear ease-out
cursor_stop_blinking_after 20.0
- cursor_trail 25
+ cursor_trail 35
cursor_trail_decay 0.1 0.5
cursor_trail_start_threshold 2
foreground #${s.scheme.foreground}
diff --git a/nix/user.nix b/nix/user.nix
index 3891a24..e6b3074 100644
--- a/nix/user.nix
+++ b/nix/user.nix
@@ -1,5 +1,6 @@
{ config, pkgs, ... }: let
s = config.local;
+ colo = s.scheme;
in {
users.users.andrew = {
isNormalUser = true;
@@ -161,5 +162,31 @@ in {
};
};
home.file.".config/gdb/gdbinit".source = ../files/gdbinit;
+ home.file.".config/colors.json".text = ''
+ {
+ "special": {
+ "background": "${colo.background}",
+ "foreground": "${colo.foreground}"
+ },
+ "colors": {
+ "color0": "${colo.color0}",
+ "color1": "${colo.color1}",
+ "color2": "${colo.color2}",
+ "color3": "${colo.color3}",
+ "color4": "${colo.color4}",
+ "color5": "${colo.color5}",
+ "color6": "${colo.color6}",
+ "color7": "${colo.color7}",
+ "color8": "${colo.color8}",
+ "color9": "${colo.color9}",
+ "color10": "${colo.color10}",
+ "color11": "${colo.color11}",
+ "color12": "${colo.color12}",
+ "color13": "${colo.color13}",
+ "color14": "${colo.color14}",
+ "color15": "${colo.color15}"
+ }
+ }
+ '';
};
}