basic changes
This commit is contained in:
2026-07-21 12:18:17 -07:00
parent 9d147a0918
commit 77dc9db13f
4 changed files with 24 additions and 3 deletions
+7
View File
@@ -54,6 +54,13 @@ in
allowUnfree = true; allowUnfree = true;
}; };
}; };
# --- xdg ---
xdg.mimeApps = {
enable = true;
defaultApplications = {
"inode/directory" = [ "kitty-open.desktop" ];
};
};
home.packages = with pkgs; [ home.packages = with pkgs; [
# --- General utils --- # --- General utils ---
+14
View File
@@ -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; [ home.packages = with pkgs; [
# --- General utils --- # --- General utils ---
libreoffice libreoffice
+1 -1
View File
@@ -307,7 +307,7 @@ prefer-no-csd
// You can change the path where screenshots are saved. // You can change the path where screenshots are saved.
// A ~ at the front will be expanded to the home directory. // 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. // 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. // You can also set this to null to disable saving screenshots to disk.
// screenshot-path null // screenshot-path null
+2 -2
View File
@@ -45,12 +45,12 @@
ffmpeg ffmpeg
ffmpegthumbnailer ffmpegthumbnailer
file file
# --- General --- # --- General utils ---
networkmanagerapplet networkmanagerapplet
]; ];
fonts.packages = [ ] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); fonts.packages = [ ] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
#general utils # --- General Utils ---
programs.vim.enable = true; programs.vim.enable = true;
programs.git.enable = true; programs.git.enable = true;
} }