From 77dc9db13fc0e1e09ee69e55aa2ee28df768c8ed Mon Sep 17 00:00:00 2001 From: winter <149337190+WinterEkisha@users.noreply.github.com> Date: Tue, 21 Jul 2026 12:18:17 -0700 Subject: [PATCH] idk basic changes --- home/Winter/Reconix.nix | 7 +++++++ home/Winter/WarNyx.nix | 14 ++++++++++++++ home/Winter/features/niri/config.kdl | 2 +- hosts/common/global/default.nix | 4 ++-- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/home/Winter/Reconix.nix b/home/Winter/Reconix.nix index 7efbf6e..56023f4 100644 --- a/home/Winter/Reconix.nix +++ b/home/Winter/Reconix.nix @@ -54,6 +54,13 @@ in allowUnfree = true; }; }; + # --- xdg --- + xdg.mimeApps = { + enable = true; + defaultApplications = { + "inode/directory" = [ "kitty-open.desktop" ]; + }; + }; home.packages = with pkgs; [ # --- General utils --- diff --git a/home/Winter/WarNyx.nix b/home/Winter/WarNyx.nix index 7efbf6e..152efb9 100644 --- a/home/Winter/WarNyx.nix +++ b/home/Winter/WarNyx.nix @@ -55,6 +55,20 @@ in }; }; + # --- xdg --- + xdg.mimeApps = { + enable = true; + defaultApplications = { + "inode/directory" = [ "kitty-open.desktop" ]; + "image/jpeg" = [ "org.gnome.gThumb.desktop" ]; + "image/png" = [ "org.gnome.gThumb.desktop" ]; + "image/gif" = [ "org.gnome.gThumb.desktop" ]; + "image/webp" = [ "org.gnome.gThumb.desktop" ]; + "image/tiff" = [ "org.gnome.gThumb.desktop" ]; + "image/bmp" = [ "org.gnome.gThumb.desktop" ]; + }; + }; + home.packages = with pkgs; [ # --- General utils --- libreoffice diff --git a/home/Winter/features/niri/config.kdl b/home/Winter/features/niri/config.kdl index 3b0e1bb..78f8014 100644 --- a/home/Winter/features/niri/config.kdl +++ b/home/Winter/features/niri/config.kdl @@ -307,7 +307,7 @@ prefer-no-csd // You can change the path where screenshots are saved. // A ~ at the front will be expanded to the home directory. // The path is formatted with strftime(3) to give you the screenshot date and time. -screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png" +screenshot-path "~/Pictures/Screenshots/Screenshot%Y-%m-%d-%H-%M-%S.png" // You can also set this to null to disable saving screenshots to disk. // screenshot-path null diff --git a/hosts/common/global/default.nix b/hosts/common/global/default.nix index 8d5ce40..5fe547f 100644 --- a/hosts/common/global/default.nix +++ b/hosts/common/global/default.nix @@ -45,12 +45,12 @@ ffmpeg ffmpegthumbnailer file - # --- General --- + # --- General utils --- networkmanagerapplet ]; fonts.packages = [ ] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); - #general utils + # --- General Utils --- programs.vim.enable = true; programs.git.enable = true; }