diff --git a/hosts/monosodium-glutamate-g/configuration.nix b/hosts/monosodium-glutamate-g/configuration.nix index c68d1ca..ee4eb1b 100644 --- a/hosts/monosodium-glutamate-g/configuration.nix +++ b/hosts/monosodium-glutamate-g/configuration.nix @@ -46,6 +46,8 @@ blueman.enable = true; gnome.gnome-keyring.enable = true; + + hardware.openrgb.enable = true; }; hardware = { keyboard.uhk.enable = true; @@ -68,6 +70,12 @@ seahorse.enable = true; }; + home-manager.users.jade = + { ... }: + { + programs.git.signing.key = "${pkgs.writeText "msg_id_ed25519.pub" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICR+WyklOASIymOiT+aIVjiLSAM1r3HdRADz2zT6bHfX jade@monosodium-glutamate-g"}"; + }; + systemd.services.easyroam.enable = false; environment.pathsToLink = [ diff --git a/modules/shell/git.nix b/modules/shell/git.nix index 2732633..8960978 100644 --- a/modules/shell/git.nix +++ b/modules/shell/git.nix @@ -26,7 +26,7 @@ }; signing = { format = "ssh"; - key = "${pkgs.writeText "blue_nk3.pub" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg7hhAKxIAbokHHcIj9HBgbkgoKGCG2R+gx7HZKL+iz cardno:000F_93C6A612"}"; + key = lib.mkDefault "${pkgs.writeText "blue_nk3.pub" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg7hhAKxIAbokHHcIj9HBgbkgoKGCG2R+gx7HZKL+iz cardno:000F_93C6A612"}"; signByDefault = true; }; };