summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/denpa/cgit/custom.css5
-rw-r--r--hosts/moyo/container.nix4
-rw-r--r--hosts/sofue/configuration.nix24
-rw-r--r--hosts/sofue/programs.nix6
-rw-r--r--hosts/yashinoki/programs.nix2
5 files changed, 27 insertions, 14 deletions
diff --git a/hosts/denpa/cgit/custom.css b/hosts/denpa/cgit/custom.css
index d55d37f..29a2080 100644
--- a/hosts/denpa/cgit/custom.css
+++ b/hosts/denpa/cgit/custom.css
@@ -62,6 +62,7 @@ div#cgit span.deletions {
--color1: rgba(var(--highlight1), 0.045);
--color2: rgba(var(--highlight1), 0.09);
--color3: #fef9fa;
+ --color4: rgba(var(--color3), 0.09);
--black: #13090c;
--gray0: #393232;
--gray1: #777;
@@ -81,6 +82,10 @@ a:hover {
color: rgb(var(--highlight1)) !important;
}
+code {
+ background-color: var(--color1);
+}
+
div#cgit {
margin: auto;
font-family: monospace;
diff --git a/hosts/moyo/container.nix b/hosts/moyo/container.nix
index d3483b5..f596d87 100644
--- a/hosts/moyo/container.nix
+++ b/hosts/moyo/container.nix
@@ -66,8 +66,8 @@
name = "vi";
vimrcConfig = { customRC = ""; };
})
- jdk23
- #graalvm-oracle
+ #jdk23
+ graalvm-ce
];
system.stateVersion = "25.05";
diff --git a/hosts/sofue/configuration.nix b/hosts/sofue/configuration.nix
index 2765eef..7c7ecc7 100644
--- a/hosts/sofue/configuration.nix
+++ b/hosts/sofue/configuration.nix
@@ -24,12 +24,13 @@ in rec {
../../nix/programs/obs.nix
../../nix/programs/waydroid.nix
../../nix/programs/kdeconnect.nix
+ ../../nix/programs/docker.nix
./programs.nix
];
local = rec {
font = {
- name = "NanumGothicCoding";
+ name = "Iosevka Comfy";
size = 15;
baseline = 0;
};
@@ -43,13 +44,13 @@ in rec {
size = ui-font.size;
baseline = 0;
};
- scheme = import ../../themes/dva_halloween/dva.nix;
+ scheme = import ../../themes/shipgirl_christmas/shipgirl_christmas.nix;
starter = {
- picture = ../../themes/dva_halloween/splash1.png;
+ picture = ../../themes/shipgirl_christmas/splash.png;
width = 41;
padding = {
- top = -5;
- left = -9;
+ top = -4;
+ left = -4;
text = 0;
};
position = "left";
@@ -60,6 +61,9 @@ in rec {
monitor1 = "DP-1";
monitor2 = "HDMI-A-1";
monitor3 = "HDMI-A-3";
+ #monitor1 = "DP-2";
+ #monitor2 = "DP-1";
+ #monitor3 = "";
};
};
@@ -119,7 +123,7 @@ in rec {
(pkgs.writeShellScriptBin "run-sway" ''
export TTY=/dev/tty3
export XDG_VTNR=3
- export WLR_RENDERER=vulkan
+ export WLR_RENDERER=gles2
export WLR_DRM_DEVICES=/dev/dri/card0
cd $HOME
exec ${pkgs.kbd}/bin/openvt --switch --login --console 3 -f -- ${pkgs.sway}/bin/sway
@@ -213,12 +217,14 @@ in rec {
"${mod4}+Shift+5" = "move container to workspace 9";
"${mod4}+r" = "exec swaymsg -- output ${s.monitors.monitor1} transform 90";
"${mod4}+Shift+r" = "exec swaymsg -- output ${s.monitors.monitor1} transform 0";
- "${mod4}+F1" = "exec printf '||' > $HOME/.config/taro/${s.monitors.monitor1}/selection";
- "${mod4}+F2" = "exec printf '__d_va_overwatch_d||' > $HOME/.config/taro/${s.monitors.monitor1}/selection";
+ "${mod4}+F1" = "exec swaymsg -- output ${s.monitors.monitor1} bg \\#${s.scheme.background-alt} solid_color";
+ "${mod4}+F2" = "exec swaymsg -- output ${s.monitors.monitor1} bg ${../../themes/shipgirl_christmas/wallpaper.png} fill";
+ #"${mod4}+F1" = "exec printf '||' > $HOME/.config/taro/${s.monitors.monitor1}/selection";
+ #"${mod4}+F2" = "exec printf '||' > $HOME/.config/taro/${s.monitors.monitor1}/selection";
"Pause" = "exec $HOME/c/camu/scripts/cmv_add.sh PAUSE";
};
startup = [
- { command = "${pkgs.mauri}/bin/tarod"; }
+ #{ command = "${pkgs.mauri}/bin/tarod"; }
];
};
};
diff --git a/hosts/sofue/programs.nix b/hosts/sofue/programs.nix
index 36c42f6..c66a289 100644
--- a/hosts/sofue/programs.nix
+++ b/hosts/sofue/programs.nix
@@ -1,6 +1,6 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
- gftp
+ #gftp
dia
cdrtools
#ardour
@@ -16,9 +16,11 @@
cabextract
qbittorrent
ungoogled-chromium
- (pkgs.discord.override { withOpenASAR = true; })
+ vesktop
+ #(pkgs.discord.override { withOpenASAR = true; })
imv
mpv
+ vlc
camu
mauri
];
diff --git a/hosts/yashinoki/programs.nix b/hosts/yashinoki/programs.nix
index 0b09229..2c17018 100644
--- a/hosts/yashinoki/programs.nix
+++ b/hosts/yashinoki/programs.nix
@@ -6,6 +6,6 @@
winetricks
cabextract
(pkgs.discord.override { withOpenASAR = true; })
- gftp
+ mpv
];
}