summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-04 18:09:41 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-04 18:09:41 +0700
commit4138dfae4e1cfd788046460b669483137bae5869 (patch)
treec45039fd412b2d9a26018bb557596664fa6e8f23
parent9b46166e50966dc3978fbb27dba5a2bc745a5e69 (diff)
mpv upd: subs and cookies
-rw-r--r--foot/.config/foot/foot.ini2
-rw-r--r--mpv/.config/mpv/mpv.conf8
-rw-r--r--nixos/modules/features/cli-tools/default.nix3
-rw-r--r--nixos/modules/features/desktop-apps/default.nix2
-rw-r--r--nixos/modules/features/editors/default.nix2
-rw-r--r--nixos/modules/features/fonts/default.nix1
-rw-r--r--nixos/modules/features/gst-codecs/default.nix2
-rw-r--r--nixos/modules/features/niri/default.nix2
-rw-r--r--nixos/modules/features/terminals/default.nix4
-rw-r--r--nixos/modules/system/hardware/default.nix2
-rw-r--r--nixos/modules/system/users/default.nix2
-rw-r--r--starship/.config/starship.toml8
12 files changed, 24 insertions, 14 deletions
diff --git a/foot/.config/foot/foot.ini b/foot/.config/foot/foot.ini
index a6e34a5..337c59e 100644
--- a/foot/.config/foot/foot.ini
+++ b/foot/.config/foot/foot.ini
@@ -3,7 +3,7 @@ include=~/.config/foot/themes/noctalia
# Dynamic theme colors
[main]
-font=Cozette :size=11
+font=Adwaita mono :size=12
pad=2x0
# paste the rest of your theme colors here
diff --git a/mpv/.config/mpv/mpv.conf b/mpv/.config/mpv/mpv.conf
index 9a11ff2..174711f 100644
--- a/mpv/.config/mpv/mpv.conf
+++ b/mpv/.config/mpv/mpv.conf
@@ -1,3 +1,7 @@
volume=30
-ytdl-raw-options-append=cookies=/home/seraphim/Documents/yt-dlp-things/cookies.txt
-
+#ytdl-raw-options-append=cookies=/home/seraphim/Documents/yt-dlp-things/cookies.txt
+ytdl-raw-options-append=cookies-from-browser=chromium
+ytdl-raw-options-append=write-subs=
+ytdl-raw-options-append=write-auto-subs=
+ytdl-raw-options-append=sub-langs=all,en
+slang=en,eng
diff --git a/nixos/modules/features/cli-tools/default.nix b/nixos/modules/features/cli-tools/default.nix
index cdd0439..bc80ca9 100644
--- a/nixos/modules/features/cli-tools/default.nix
+++ b/nixos/modules/features/cli-tools/default.nix
@@ -14,8 +14,9 @@
cryptsetup
yt-dlp
caligula
+ fetch
];
# Cross-shell prompt; its config lives in the dotfiles repo, not NixOS.
programs.starship.enable = true;
-} \ No newline at end of file
+}
diff --git a/nixos/modules/features/desktop-apps/default.nix b/nixos/modules/features/desktop-apps/default.nix
index d1db1d5..175938e 100644
--- a/nixos/modules/features/desktop-apps/default.nix
+++ b/nixos/modules/features/desktop-apps/default.nix
@@ -21,7 +21,7 @@
pkgs.qbittorrent
evince
pkgs.masterpdfeditor
- mullvad-browser
librewolf
+ chromium
];
}
diff --git a/nixos/modules/features/editors/default.nix b/nixos/modules/features/editors/default.nix
index 7f1dd9a..5cec5da 100644
--- a/nixos/modules/features/editors/default.nix
+++ b/nixos/modules/features/editors/default.nix
@@ -9,4 +9,4 @@
# IME input method integration for the Vim/Neovim ecosystem.
pkgs.vimPlugins.im-select-nvim
];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/features/fonts/default.nix b/nixos/modules/features/fonts/default.nix
index 7f2c371..3506c32 100644
--- a/nixos/modules/features/fonts/default.nix
+++ b/nixos/modules/features/fonts/default.nix
@@ -13,5 +13,6 @@
noto-fonts-color-emoji
adwaita-fonts
cozette
+ roboto
];
}
diff --git a/nixos/modules/features/gst-codecs/default.nix b/nixos/modules/features/gst-codecs/default.nix
index eac6777..c3decb8 100644
--- a/nixos/modules/features/gst-codecs/default.nix
+++ b/nixos/modules/features/gst-codecs/default.nix
@@ -9,4 +9,4 @@
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-ugly
];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/features/niri/default.nix b/nixos/modules/features/niri/default.nix
index 8f48be7..75a7a31 100644
--- a/nixos/modules/features/niri/default.nix
+++ b/nixos/modules/features/niri/default.nix
@@ -15,4 +15,4 @@
# Shows polkit authentication dialogs as a layer-shell popup.
hyprpolkitagent
];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/features/terminals/default.nix b/nixos/modules/features/terminals/default.nix
index 22c5662..ec7ead3 100644
--- a/nixos/modules/features/terminals/default.nix
+++ b/nixos/modules/features/terminals/default.nix
@@ -1,8 +1,10 @@
{ pkgs, ... }:
{
+ programs.foot.settings.main.shell = "tmux";
environment.systemPackages = with pkgs; [
foot
ghostty
+ tmux
];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/system/hardware/default.nix b/nixos/modules/system/hardware/default.nix
index b3f1bbb..d81b60e 100644
--- a/nixos/modules/system/hardware/default.nix
+++ b/nixos/modules/system/hardware/default.nix
@@ -17,4 +17,4 @@
# The actual NVIDIA driver is configured in modules/features/nvidia; this
# just tells the X server legacy path to prefer the nvidia driver name.
services.xserver.videoDrivers = [ "nvidia" ];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/system/users/default.nix b/nixos/modules/system/users/default.nix
index 6eafd7c..d795a64 100644
--- a/nixos/modules/system/users/default.nix
+++ b/nixos/modules/system/users/default.nix
@@ -41,6 +41,8 @@
shellAliases = {
ls = "eza -al --icons=auto";
ll = "eza -al --icons=auto";
+ fs = "fastfetch";
+ hf = "hyfetch";
sudo = "doas";
open = "xdg-open";
};
diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml
index 8073008..ab1d1a7 100644
--- a/starship/.config/starship.toml
+++ b/starship/.config/starship.toml
@@ -6,13 +6,13 @@ format = "$username$hostname$character [$directory$git_branch$git_status]($style
[username]
show_always = true
format = "[$user]($style)"
-style_user = "bold #8C00FF"
-
+style_user = "#8C00FF"
+# style_user = "bold #8C00FF"
[hostname]
disabled = false
ssh_only = false
format = "[@$hostname]($style)"
-style = "bold #8C00FF"
+style = "#8C00FF"
[character]
format = "$symbol" # Removes the default trailing space after #
@@ -20,7 +20,7 @@ error_symbol = "[:~✗](bold red)"
success_symbol = "[:~#](bold #8C00FF)"
[directory]
-style = "bold #AA40FF"
+style = "#AA40FF"
truncation_length = 2
truncation_symbol = "///"
repo_root_style = "#AA40FF"