1
0
Fork 0

configuration: update

This commit is contained in:
Antoine Langlois 2024-03-18 19:17:23 +01:00
parent 80606c0bc8
commit fc46bc4d33
Signed by: DataHearth
GPG Key ID: 946E2D0C410C7B3D
4 changed files with 11 additions and 21 deletions

View File

@ -4,7 +4,6 @@
modules_base_path = ../../../modules;
modules_hm_path = modules_base_path + "/home-manager";
in [
"${modules_hm_path}/services/gpg_ssh_agent.nix"
"${modules_hm_path}/swaylock"
"${modules_hm_path}/looking-glass"
"${modules_hm_path}/vscode"

View File

@ -1,10 +1,19 @@
{ ... }:
{ pkgs, ... }:
{
services = {
playerctld.enable = true;
ssh-agent.enable = true;
nextcloud-client = {
enable = true;
startInBackground = true;
};
gpg-agent = {
enable = true;
enableZshIntegration = true;
pinentryPackage = pkgs.pinentry-qt;
defaultCacheTtl = 86400;
maxCacheTtl = 86400;
};
};
}

View File

@ -32,6 +32,7 @@
programs = {
zoxide.enable = true;
btop.enable = true;
eza.enable = true;
bash = {
enable = true;
@ -62,11 +63,6 @@
};
};
eza = {
enable = true;
enableAliases = true;
};
go = {
enable = true;
goPath = "go/path";

View File

@ -1,14 +0,0 @@
{ ... }:
{
services = {
gpg-agent = {
enable = true;
enableZshIntegration = true;
pinentryFlavor = "qt";
defaultCacheTtl = 86400;
maxCacheTtl = 86400;
};
ssh-agent.enable = true;
};
}