Compare commits

..

No commits in common. "c9900bf51b4cb1e3ea8a5f80c34108ad73b1b5e7" and "a30d2619ea454b43bcbe43ea57c047f404f2e764" have entirely different histories.

5 changed files with 9 additions and 8 deletions

View file

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

View file

@ -70,9 +70,10 @@
hardware = {
pulseaudio.enable = false;
graphics = {
opengl = {
enable = true;
enable32Bit = true;
driSupport = true;
driSupport32Bit = 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:7e71c17a2ce69305889bb3305b057929066c767037b2415a354f2b7dbeff6013"; # v0.26.2
image = "stashapp/stash@sha256:6b8814b61e4fe77bc910bec858dd45e0970c8af6f439c066317ae68f03af4f91"; # v0.25.1
ports = ["9999:9999"];
environment = {
STASH_STASH = "/data/";

View file

@ -28,7 +28,7 @@
};
nix = {
channel.enable = true;
channel.enable = false;
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.19.1";
version = "0.18.2";
src = prev.fetchFromGitHub {
owner = "aome510";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-R8F7s8FPnCe+shNUN/u0qcxFy3IbyfVo2xZ5/E/qwaw=";
hash = "sha256-bLUPQgqSsE9tF5YiFj5B+Ylyy96DhWFNjwqXbQ9H8uc=";
};
cargoDeps = old.cargoDeps.overrideAttrs (lib.const {
name = "spotify-player.tar.gz";
inherit src;
outputHash = "sha256-t9sLyz65aI6lngXlDBORWxiFNg5Pz3k0C9vBwg4chfo=";
outputHash = "sha256-sBhQuU0HpyXOEUtKPZxoNxSp1d5nxuifcYCW7cCOgJI=";
});
});
})