Temporarily disable keychain and pgp signing on hikari

This commit is contained in:
Daniel Siepmann 2022-11-03 17:01:37 +01:00
parent 07eb0c4be1
commit 87408de6b0
5 changed files with 16 additions and 18 deletions

View file

@ -1,6 +1,9 @@
{ config, pkgs, lib, ... }:
{
let
ownLib = import ./home/packages/lib;
in {
imports = [
./home/modules/programs/cmus.nix
@ -46,7 +49,7 @@
};
programs = import ./home/programs.nix {
inherit config pkgs;
inherit config pkgs ownLib;
};
fonts.fontconfig.enable = true;
@ -56,7 +59,7 @@
};
xsession = import ./home/xsession.nix {
inherit config pkgs;
inherit config pkgs ownLib;
};
xdg = import ./home/xdg.nix {

View file

@ -1,4 +1,4 @@
{ config, pkgs }:
{ config, pkgs, ownLib }:
let
@ -14,7 +14,7 @@ in {
};
git = import ./programs/git.nix {
inherit pkgs;
inherit pkgs ownLib;
};
htop = import ./programs/htop.nix {
@ -34,7 +34,7 @@ in {
};
keychain = import ./programs/keychain.nix {
inherit config pkgs;
inherit config pkgs ownLib;
};
gpg = import ./programs/gpg.nix {

View file

@ -1,4 +1,4 @@
{ pkgs }:
{ pkgs, ownLib }:
{
enable = true;
@ -8,7 +8,7 @@
signing = {
key = "15560EF4";
signByDefault = true;
signByDefault = if ownLib.onHikari {} then false else true;
};
aliases = {

View file

@ -1,13 +1,10 @@
{ config, pkgs }:
{ config, pkgs, ownLib }:
{
enable = true;
keys = [
"id_rsa"
"id_ed25519"
];
enable = if ownLib.onHikari {} then false else true;
keys = if ownLib.onHikari {} then ["id_ed25519"] else ["id_rsa" "id_ed25519"];
enableBashIntegration = false;
enableFishIntegration = false;
enableZshIntegration = true;
enableZshIntegration = if ownLib.onHikari {} then false else true;
enableXsessionIntegration = false;
}

View file

@ -1,8 +1,6 @@
{ config, pkgs }:
{ config, pkgs, ownLib }:
let
ownLib = import ./packages/lib;
initExtraHikari = ''
xrandr --auto --output eDP-1 --brightness 1 --scale 1.25x1.25