feat: a lot of stuff

This commit is contained in:
Jacob Bachmann 2024-07-25 16:54:52 +02:00
parent a990c70c8f
commit 059f5efba3
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
9 changed files with 42 additions and 9 deletions

18
modules/nautilus.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, lib, config, ... }: with config.bchmnn; lib.mkIf (gui.enable && gui.flavour != [ ]) {
programs.nautilus-open-any-terminal = {
enable = true;
terminal = "alacritty";
};
environment = {
sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${pkgs.gnome.nautilus-python}/lib/nautilus/extensions-4";
pathsToLink = [
"/share/nautilus-python/extensions"
];
systemPackages = with pkgs; [
gnome.nautilus
gnome.nautilus-python
];
};
}