mirror of
https://github.com/nmasur/dotfiles
synced 2025-04-23 19:12:23 +00:00
Compare commits
2 Commits
37fa835c66
...
58a0e6166d
Author | SHA1 | Date | |
---|---|---|---|
|
58a0e6166d | ||
|
e8c5a10df7 |
@ -10,12 +10,21 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf (config.gui.enable && config.media.enable) {
|
config = lib.mkIf (config.gui.enable && config.media.enable) {
|
||||||
home-manager.users.${config.user}.home.packages = with pkgs; [
|
home-manager.users.${config.user} = {
|
||||||
mpv # Video viewer
|
home.packages = with pkgs; [
|
||||||
sxiv # Image viewer
|
mpv # Video viewer
|
||||||
mupdf # PDF viewer
|
sxiv # Image viewer
|
||||||
zathura # PDF viewer
|
mupdf # PDF viewer
|
||||||
];
|
zathura # PDF viewer
|
||||||
|
];
|
||||||
|
|
||||||
|
# Set default for opening PDFs
|
||||||
|
xdg.mimeApps.defaultApplications."application/pdf" =
|
||||||
|
[ "zathura.desktop" ];
|
||||||
|
xdg.mimeApps.defaultApplications."image/*" = [ "sxiv.desktop" ];
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,10 @@
|
|||||||
gnome.sushi # Quick preview with spacebar
|
gnome.sushi # Quick preview with spacebar
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Set default for opening directories
|
||||||
|
xdg.mimeApps.defaultApplications."inode/directory" =
|
||||||
|
[ "nautilus.desktop" ];
|
||||||
|
|
||||||
programs.fish.functions = {
|
programs.fish.functions = {
|
||||||
qr = {
|
qr = {
|
||||||
body =
|
body =
|
||||||
|
@ -35,4 +35,9 @@
|
|||||||
# Allows GRUB to interact with the UEFI/BIOS I guess
|
# Allows GRUB to interact with the UEFI/BIOS I guess
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Allow reading from Windows drives
|
||||||
|
boot.supportedFilesystems =
|
||||||
|
lib.mkIf (config.physical && pkgs.stdenv.isLinux) [ "ntfs" ];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user