diff --git a/Nix.org b/Nix.org index 77abf42..0a2f837 100644 --- a/Nix.org +++ b/Nix.org @@ -586,13 +586,13 @@ No matter what you do, check the initial /etc/nixos/configuration.nix for notabl { - <> + <> home = { username = "TEMPLATE"; homeDirectory = "/home/TEMPLATE"; stateVersion = "23.05"; # TEMPLATE -- Please read the comment before changing. keyboard.layout = "us"; # TEMPLATE - home.packages = with pkgs; [ + packages = with pkgs; [ # --------------------------------------------------------------- # if schildichat works on this machine, use it, otherwise go for element # element-desktop @@ -1340,7 +1340,7 @@ New setup for the SP3, this time using NixOS - another machine will take over th homeDirectory = "/home/swarsel"; stateVersion = "23.05"; # TEMPLATE -- Please read the comment before changing. keyboard.layout = "us"; # TEMPLATE - home.packages = with pkgs; [ + packages = with pkgs; [ ]; }; sops.age.sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/sops" ]; diff --git a/profiles/TEMPLATE/home.nix b/profiles/TEMPLATE/home.nix index aec8b66..95d8deb 100644 --- a/profiles/TEMPLATE/home.nix +++ b/profiles/TEMPLATE/home.nix @@ -3,12 +3,17 @@ { + services.gpg-agent = { + enable = true; + enableSshSupport = true; + }; + home = { username = "TEMPLATE"; homeDirectory = "/home/TEMPLATE"; stateVersion = "23.05"; # TEMPLATE -- Please read the comment before changing. keyboard.layout = "us"; # TEMPLATE - home.packages = with pkgs; [ + packages = with pkgs; [ # --------------------------------------------------------------- # if schildichat works on this machine, use it, otherwise go for element # element-desktop diff --git a/profiles/fourside/home.nix b/profiles/fourside/home.nix index f5f1598..1aabe30 100644 --- a/profiles/fourside/home.nix +++ b/profiles/fourside/home.nix @@ -13,7 +13,7 @@ homeDirectory = "/home/swarsel"; stateVersion = "23.05"; # TEMPLATE -- Please read the comment before changing. keyboard.layout = "us"; # TEMPLATE - home.packages = with pkgs; [ + packages = with pkgs; [ ]; }; sops.age.sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/sops" ];