Compare commits
5 commits
a30d2619ea
...
c9900bf51b
Author | SHA1 | Date | |
---|---|---|---|
c9900bf51b | |||
d796025cf9 | |||
315e767bb9 | |||
821cc03cc3 | |||
35a012f5ab |
5 changed files with 8 additions and 9 deletions
|
@ -11,7 +11,7 @@ local config = {
|
||||||
|
|
||||||
color_scheme = "Tokyo Night",
|
color_scheme = "Tokyo Night",
|
||||||
enable_wayland = true,
|
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,
|
font_size = 12.0,
|
||||||
window_background_opacity = 0.6,
|
window_background_opacity = 0.6,
|
||||||
text_background_opacity = 1.0,
|
text_background_opacity = 1.0,
|
||||||
|
|
|
@ -70,10 +70,9 @@
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
pulseaudio.enable = false;
|
pulseaudio.enable = false;
|
||||||
opengl = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
driSupport = true;
|
enable32Bit = true;
|
||||||
driSupport32Bit = true;
|
|
||||||
};
|
};
|
||||||
opentabletdriver = {
|
opentabletdriver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -2,7 +2,7 @@ _: let
|
||||||
storagePath = "/home/notoh/docker/stash";
|
storagePath = "/home/notoh/docker/stash";
|
||||||
in {
|
in {
|
||||||
virtualisation.oci-containers.containers.stash = {
|
virtualisation.oci-containers.containers.stash = {
|
||||||
image = "stashapp/stash@sha256:6b8814b61e4fe77bc910bec858dd45e0970c8af6f439c066317ae68f03af4f91"; # v0.25.1
|
image = "stashapp/stash@sha256:7e71c17a2ce69305889bb3305b057929066c767037b2415a354f2b7dbeff6013"; # v0.26.2
|
||||||
ports = ["9999:9999"];
|
ports = ["9999:9999"];
|
||||||
environment = {
|
environment = {
|
||||||
STASH_STASH = "/data/";
|
STASH_STASH = "/data/";
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
channel.enable = false;
|
channel.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
extra-experimental-features = ["flakes" "nix-command"];
|
extra-experimental-features = ["flakes" "nix-command"];
|
||||||
warn-dirty = false;
|
warn-dirty = false;
|
||||||
|
|
|
@ -19,17 +19,17 @@
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
spotify-player = prev.spotify-player.overrideAttrs (old: rec {
|
spotify-player = prev.spotify-player.overrideAttrs (old: rec {
|
||||||
pname = "spotify-player";
|
pname = "spotify-player";
|
||||||
version = "0.18.2";
|
version = "0.19.1";
|
||||||
src = prev.fetchFromGitHub {
|
src = prev.fetchFromGitHub {
|
||||||
owner = "aome510";
|
owner = "aome510";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-bLUPQgqSsE9tF5YiFj5B+Ylyy96DhWFNjwqXbQ9H8uc=";
|
hash = "sha256-R8F7s8FPnCe+shNUN/u0qcxFy3IbyfVo2xZ5/E/qwaw=";
|
||||||
};
|
};
|
||||||
cargoDeps = old.cargoDeps.overrideAttrs (lib.const {
|
cargoDeps = old.cargoDeps.overrideAttrs (lib.const {
|
||||||
name = "spotify-player.tar.gz";
|
name = "spotify-player.tar.gz";
|
||||||
inherit src;
|
inherit src;
|
||||||
outputHash = "sha256-sBhQuU0HpyXOEUtKPZxoNxSp1d5nxuifcYCW7cCOgJI=";
|
outputHash = "sha256-t9sLyz65aI6lngXlDBORWxiFNg5Pz3k0C9vBwg4chfo=";
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue