Compare commits

..

5 commits

Author SHA1 Message Date
c9900bf51b
wezterm: update font
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
2024-07-11 06:39:12 -04:00
d796025cf9
nix: enable channels 2024-07-11 06:38:57 -04:00
315e767bb9
stash: bump version 2024-07-11 06:38:51 -04:00
821cc03cc3
tsuki: update graphics 2024-07-11 06:38:43 -04:00
35a012f5ab
spotify-player: bump version 2024-07-11 06:37:29 -04:00
5 changed files with 8 additions and 9 deletions

View file

@ -11,7 +11,7 @@ local config = {
color_scheme = "Tokyo Night",
enable_wayland = true,
font = wezterm.font_with_fallback({ "Comic Code Ligatures", "JetBrainsMono NF Medium" }),
font = wezterm.font_with_fallback({ "Comic Code Ligatures Medium", "JetBrainsMono NF Medium" }),
font_size = 12.0,
window_background_opacity = 0.6,
text_background_opacity = 1.0,

View file

@ -70,10 +70,9 @@
hardware = {
pulseaudio.enable = false;
opengl = {
graphics = {
enable = true;
driSupport = true;
driSupport32Bit = true;
enable32Bit = true;
};
opentabletdriver = {
enable = true;

View file

@ -2,7 +2,7 @@ _: let
storagePath = "/home/notoh/docker/stash";
in {
virtualisation.oci-containers.containers.stash = {
image = "stashapp/stash@sha256:6b8814b61e4fe77bc910bec858dd45e0970c8af6f439c066317ae68f03af4f91"; # v0.25.1
image = "stashapp/stash@sha256:7e71c17a2ce69305889bb3305b057929066c767037b2415a354f2b7dbeff6013"; # v0.26.2
ports = ["9999:9999"];
environment = {
STASH_STASH = "/data/";

View file

@ -28,7 +28,7 @@
};
nix = {
channel.enable = false;
channel.enable = true;
settings = {
extra-experimental-features = ["flakes" "nix-command"];
warn-dirty = false;

View file

@ -19,17 +19,17 @@
(final: prev: {
spotify-player = prev.spotify-player.overrideAttrs (old: rec {
pname = "spotify-player";
version = "0.18.2";
version = "0.19.1";
src = prev.fetchFromGitHub {
owner = "aome510";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-bLUPQgqSsE9tF5YiFj5B+Ylyy96DhWFNjwqXbQ9H8uc=";
hash = "sha256-R8F7s8FPnCe+shNUN/u0qcxFy3IbyfVo2xZ5/E/qwaw=";
};
cargoDeps = old.cargoDeps.overrideAttrs (lib.const {
name = "spotify-player.tar.gz";
inherit src;
outputHash = "sha256-sBhQuU0HpyXOEUtKPZxoNxSp1d5nxuifcYCW7cCOgJI=";
outputHash = "sha256-t9sLyz65aI6lngXlDBORWxiFNg5Pz3k0C9vBwg4chfo=";
});
});
})