From cbdc3b7bff4f46913ed9c3ccb41ae6130e46ac03 Mon Sep 17 00:00:00 2001 From: oddlama Date: Fri, 8 Sep 2023 14:30:13 +0200 Subject: [PATCH] fix: enable mimeApps (oops) --- users/myuser/graphical/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/users/myuser/graphical/default.nix b/users/myuser/graphical/default.nix index b916954..a0b0a35 100644 --- a/users/myuser/graphical/default.nix +++ b/users/myuser/graphical/default.nix @@ -1,5 +1,8 @@ {pkgs, ...}: { imports = [ + #./games/league-of-legends.nix + #./games/steam.nix + ./discord.nix ./firefox.nix ./kitty.nix @@ -13,9 +16,16 @@ chromium zathura feh + sirula ]; + # TODO screenshot selection/all and copy clipboard + # TODO screenshot selection/all and save + # TODO screenshot selection and scan qr and copy clipboard + # TODO screenshot selection and ocr and copy clipboard # TODO sway config + # TODO sway shortcuts + # TODO enable nodeadkeys # TODO kitty terminfo missing with ssh root@localhost # TODO nvim coloscheme missing on reboot.... what state is missing? # TODO VP9 hardware video decoding blocklisted @@ -24,11 +34,13 @@ shellAliases = { p = "cd ~/projects"; - zf = "zathura --fork"; + zf = "zathura --fork"; # XXX: do i need this or can i just xdg-open? }; persistence."/persist".directories = [ "projects" ]; + + xdg.mimeApps.enable = true; }; }