miriway: 24.11.1 -> 25.02

OPNA2608 03b0b73f 24cdb83d

Changed files
+11 -3
nixos
modules
programs
pkgs
by-name
mi
miriway
+9 -1
nixos/modules/programs/miriway.nix
···
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;
};
···
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 ];
+2 -2
pkgs/by-name/mi/miriway/package.nix
···
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 = ''