flake: bump inputs

This commit is contained in:
514fpv 2024-08-28 22:15:58 +08:00
parent c670a2a749
commit 9b20f7f572
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
5 changed files with 31 additions and 27 deletions

View file

@ -65,12 +65,14 @@ in {
# override greetd theme
programs.regreet = mkIf cfg.enable {
theme = {
inherit (cfg.gtk) name package;
};
cursorTheme = {
inherit (cfg.cursor) name package;
};
settings = {
background.path = ./solid.png;
GTK = {
theme_name = cfg.gtk.name;
cursor_theme_name = cfg.cursor.name;
};
};
};
};

View file

@ -35,7 +35,6 @@ in mkIf cfg.enable {
gnome-connections
gnome-font-viewer
gnome-text-editor
]) ++ (with pkgs.gnome; [ ] ++ optionals config.global.flatpak.enable [
gnome-characters
gnome-clocks
gnome-contacts
@ -43,6 +42,7 @@ in mkIf cfg.enable {
gnome-maps
gnome-music
gnome-weather
]) ++ (with pkgs.gnome; [ ] ++ optionals config.global.flatpak.enable [
]);
users.home.persist.directories = [ ".config/dconf" ];

View file

@ -4,7 +4,8 @@
, ... }: with lib; let
cfg = config.passthrough.gyroflow;
in mkIf cfg.enable {
home.packages = [ cfg.package ];
# temporarily gone until regression is fixed
#home.packages = [ cfg.package ];
wayland.windowManager.sway.config.window.commands = [
{ criteria.app_id = "xyz.gyroflow.gyroflow"; command = "floating enable"; }