mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-02-22 22:33:56 +01:00
added footclient
This commit is contained in:
parent
40aa35b0f7
commit
72ea530b1a
|
@ -17,7 +17,7 @@ set $down j
|
|||
set $up k
|
||||
set $right l
|
||||
# Your preferred terminal emulator
|
||||
set $term foot
|
||||
set $term footclient
|
||||
# Your preferred application launcher
|
||||
# Note: pass the final command to swaymsg so that the resulting window can be opened
|
||||
# on the original workspace that the command was run on.
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
pkgs.xfce.thunar
|
||||
pkgs.gimp-with-plugins
|
||||
pkgs.fzf
|
||||
pkgs.nnn
|
||||
pkgs.lf
|
||||
pkgs.why3
|
||||
pkgs.alt-ergo
|
||||
pkgs.cvc4
|
||||
|
@ -80,6 +80,8 @@
|
|||
|
||||
pkgs.krita
|
||||
pkgs.udiskie
|
||||
|
||||
pkgs.libsixel
|
||||
# # You can also create simple shell scripts directly inside your
|
||||
# # configuration. For example, this adds a command 'my-hello' to your
|
||||
# # environment:
|
||||
|
@ -202,6 +204,23 @@
|
|||
longitude = 8.4;
|
||||
};
|
||||
|
||||
xdg.mimeApps = {
|
||||
enable = true;
|
||||
defaultApplications = {
|
||||
"text/html" = "firefox.desktop";
|
||||
"x-scheme-handler/http" = "firefox.desktop";
|
||||
"x-scheme-handler/https" = "firefox.desktop";
|
||||
"x-scheme-handler/about" = "firefox.desktop";
|
||||
"x-scheme-handler/unknown" = "firefox.desktop";
|
||||
"application/pdf" = "org.pwmt.zathura-pdf-mupdf.desktop";
|
||||
};
|
||||
};
|
||||
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
server.enable = true;
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue