Add archive tools, open folders in nautilus
This commit is contained in:
parent
6645725200
commit
c11f434e72
1 changed files with 14 additions and 1 deletions
|
@ -19,7 +19,18 @@ in
|
||||||
home.file."./.background-image".source = ../wallpapers/${colors.wallpaper};
|
home.file."./.background-image".source = ../wallpapers/${colors.wallpaper};
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
xdg.mimeApps = {
|
||||||
|
enable = true;
|
||||||
|
defaultApplications = {
|
||||||
|
# Make sure directories are opened in nautilus
|
||||||
|
# .desktop files can be found in /etc/profiles/per-user/elnu/share/applications
|
||||||
|
# mimetypes can be found with the mimetype command:
|
||||||
|
# nix-shell -p perl536Packages.FileMimeInfo
|
||||||
|
"inode/directory" = "org.gnome.Nautilus.desktop";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
iconTheme = colors.gtkIconTheme pkgs;
|
iconTheme = colors.gtkIconTheme pkgs;
|
||||||
|
@ -57,6 +68,7 @@ in
|
||||||
fortune
|
fortune
|
||||||
killall
|
killall
|
||||||
trash-cli # aliased to rm in .bashrc
|
trash-cli # aliased to rm in .bashrc
|
||||||
|
unzip
|
||||||
|
|
||||||
# Tray applications
|
# Tray applications
|
||||||
networkmanagerapplet # nm-applet
|
networkmanagerapplet # nm-applet
|
||||||
|
@ -67,6 +79,7 @@ in
|
||||||
firefox
|
firefox
|
||||||
discord
|
discord
|
||||||
gnome.nautilus
|
gnome.nautilus
|
||||||
|
gnome.file-roller
|
||||||
#gimp
|
#gimp
|
||||||
#krita
|
#krita
|
||||||
#musescore
|
#musescore
|
||||||
|
|
Loading…
Add table
Reference in a new issue