miriway: 24.11.1 -> 25.02

This commit is contained in:
OPNA2608 2025-02-26 22:24:17 +01:00
parent 24cdb83d2c
commit 03b0b73fbd
2 changed files with 11 additions and 3 deletions

View file

@ -65,7 +65,10 @@ in
config = lib.mkIf cfg.enable {
environment = {
systemPackages = [ pkgs.miriway ];
systemPackages = with pkgs; [
miriway
vanilla-dmz
];
etc = {
"xdg/xdg-miriway/miriway-shell.config".text = cfg.config;
};
@ -80,6 +83,11 @@ in
services.displayManager.sessionPackages = [ pkgs.miriway ];
xdg.icons.enable = true;
xdg.icons.fallbackCursorThemes = lib.mkDefault [
# Miriway looks for "default" theme, fails to start if not present
# Mir normally looks for DMZ-White theme if none specified, so make that present as the default
"DMZ-White"
];
};
meta.maintainers = with lib.maintainers; [ OPNA2608 ];

View file

@ -15,13 +15,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "miriway";
version = "24.11.1";
version = "25.02";
src = fetchFromGitHub {
owner = "Miriway";
repo = "Miriway";
tag = "v${finalAttrs.version}";
hash = "sha256-DphzqU0jT2NE2dSDuQf6BQIjXTwJuPiOjfxk9N9YmaQ=";
hash = "sha256-F8zmIuV0IszMZpeOhKAbvrjyA4EQH7JWH10rv2maCzk=";
};
postPatch = ''