Configure bookmarks
This commit is contained in:
parent
4081ffcbaf
commit
e68c4b1b2f
1 changed files with 34 additions and 16 deletions
|
@ -5,7 +5,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../neovim ../ranger.nix
|
../neovim
|
||||||
|
../ranger.nix
|
||||||
../fcitx5
|
../fcitx5
|
||||||
../picom.nix
|
../picom.nix
|
||||||
../i3.nix
|
../i3.nix
|
||||||
|
@ -21,7 +22,17 @@ in
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
xdg.mimeApps = {
|
xdg = {
|
||||||
|
userDirs = rec {
|
||||||
|
enable = true;
|
||||||
|
desktop = "${config.home.homeDirectory}"; # weird hack for disabling desktop in nautilus
|
||||||
|
documents = null;
|
||||||
|
music = null;
|
||||||
|
pictures = "${publicShare}/Pictures";
|
||||||
|
templates = null;
|
||||||
|
publicShare = "${config.home.homeDirectory}/Nextcloud";
|
||||||
|
};
|
||||||
|
mimeApps = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
# Make sure directories are opened in nautilus
|
# Make sure directories are opened in nautilus
|
||||||
|
@ -32,18 +43,25 @@ in
|
||||||
"application/zip" = "org.gnome.FileRoller.desktop";
|
"application/zip" = "org.gnome.FileRoller.desktop";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
iconTheme = colors.gtkIconTheme pkgs;
|
iconTheme = colors.gtkIconTheme pkgs;
|
||||||
theme = colors.gtkTheme pkgs;
|
theme = colors.gtkTheme pkgs;
|
||||||
|
gtk3 = {
|
||||||
|
bookmarks = let
|
||||||
|
home = "file://${config.home.homeDirectory}/";
|
||||||
|
in [
|
||||||
|
"${home}Nextcloud"
|
||||||
|
"${home}Projects"
|
||||||
|
"${home}nix-config Config"
|
||||||
|
"sftp://elnu@elnuhub elnuhub"
|
||||||
|
];
|
||||||
# Remove minimize, maximize, and close buttons
|
# Remove minimize, maximize, and close buttons
|
||||||
gtk3.extraConfig = {
|
extraConfig.gtk-decoration-layout = "appmenu:none";
|
||||||
gtk-decoration-layout = "appmenu:none";
|
|
||||||
};
|
|
||||||
gtk4.extraConfig = {
|
|
||||||
gtk-decoration-layout = "appmenu:none";
|
|
||||||
};
|
};
|
||||||
|
gtk4.extraConfig.gtk-decoration-layout = "appmenu:none";
|
||||||
};
|
};
|
||||||
|
|
||||||
qt = {
|
qt = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue