Temporarily remove neovide
This commit is contained in:
parent
10e362af18
commit
05e3b8b222
5 changed files with 24 additions and 12 deletions
|
|
@ -119,7 +119,7 @@
|
|||
package = pkgs.nix-direnv;
|
||||
};
|
||||
};
|
||||
ssh.startAgent = true;
|
||||
#ssh.startAgent = true;
|
||||
gnupg.agent.enable = true;
|
||||
}
|
||||
// config.mods.basePackages.specialPrograms
|
||||
|
|
|
|||
|
|
@ -451,7 +451,8 @@
|
|||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
(lib.mkIf config.mods.coding.dashvim neovide)
|
||||
# TODO re-enable, fucking amazing experience right now
|
||||
# (lib.mkIf config.mods.coding.dashvim neovide)
|
||||
(lib.mkIf config.mods.coding.jetbrains jetbrains-toolbox)
|
||||
]
|
||||
++ config.mods.coding.additionalPackages
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@
|
|||
config = lib.mkIf config.mods.gnomeServices.enable (
|
||||
lib.optionalAttrs (options ? services.gnome.gnome-keyring) {
|
||||
programs.dconf.enable = true;
|
||||
environment.extraInit = ''
|
||||
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/keyring/ssh"
|
||||
'';
|
||||
services = {
|
||||
# needed for GNOME services outside of GNOME Desktop
|
||||
dbus.packages = with pkgs; [
|
||||
|
|
@ -41,15 +44,19 @@
|
|||
};
|
||||
}
|
||||
// lib.optionalAttrs (options ? home.packages) {
|
||||
home.packages =
|
||||
let
|
||||
packages = with pkgs; [
|
||||
nautilus
|
||||
sushi
|
||||
nautilus-python
|
||||
];
|
||||
in
|
||||
lib.mkIf config.mods.nautilus.enable packages;
|
||||
services.gnome-keyring.enable = true;
|
||||
home = {
|
||||
packages =
|
||||
let
|
||||
packages = with pkgs; [
|
||||
gcr
|
||||
nautilus
|
||||
sushi
|
||||
nautilus-python
|
||||
];
|
||||
in
|
||||
lib.mkIf config.mods.nautilus.enable packages;
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -135,6 +135,8 @@
|
|||
|
||||
# unlock GPG keyring on login
|
||||
security.pam.services.greetd.enableGnomeKeyring = true;
|
||||
security.pam.services.greetd.sshAgentAuth = true;
|
||||
security.pam.sshAgentAuth.enable = true;
|
||||
}
|
||||
// lib.optionalAttrs (options ? home) {
|
||||
xdg.configFile."regreet/regreet.toml".source =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue