mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
18 lines
432 B
Nix
18 lines
432 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
# Nextcloud sync client
|
|
nextcloud-client
|
|
# Python bindings for Nautilus (GNOME Files) extension API.
|
|
gnome.nautilus-python
|
|
];
|
|
};
|
|
|
|
# environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4";
|
|
# environment.pathsToLink = [
|
|
# "/share/nautilus-python/extensions"
|
|
# ];
|
|
}
|