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 $up k
|
||||||
set $right l
|
set $right l
|
||||||
# Your preferred terminal emulator
|
# Your preferred terminal emulator
|
||||||
set $term foot
|
set $term footclient
|
||||||
# Your preferred application launcher
|
# Your preferred application launcher
|
||||||
# Note: pass the final command to swaymsg so that the resulting window can be opened
|
# 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.
|
# on the original workspace that the command was run on.
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
pkgs.xfce.thunar
|
pkgs.xfce.thunar
|
||||||
pkgs.gimp-with-plugins
|
pkgs.gimp-with-plugins
|
||||||
pkgs.fzf
|
pkgs.fzf
|
||||||
pkgs.nnn
|
pkgs.lf
|
||||||
pkgs.why3
|
pkgs.why3
|
||||||
pkgs.alt-ergo
|
pkgs.alt-ergo
|
||||||
pkgs.cvc4
|
pkgs.cvc4
|
||||||
|
@ -80,6 +80,8 @@
|
||||||
|
|
||||||
pkgs.krita
|
pkgs.krita
|
||||||
pkgs.udiskie
|
pkgs.udiskie
|
||||||
|
|
||||||
|
pkgs.libsixel
|
||||||
# # You can also create simple shell scripts directly inside your
|
# # You can also create simple shell scripts directly inside your
|
||||||
# # configuration. For example, this adds a command 'my-hello' to your
|
# # configuration. For example, this adds a command 'my-hello' to your
|
||||||
# # environment:
|
# # environment:
|
||||||
|
@ -202,6 +204,23 @@
|
||||||
longitude = 8.4;
|
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.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue