bigboy with just Home Manager on Kubuntu

This commit is contained in:
Gene Liverman 2024-05-21 23:49:20 -04:00
parent cf3f5e67a5
commit a02866a8f2
5 changed files with 64 additions and 17 deletions

View file

@ -1,15 +1,15 @@
{ pkgs, hostname, username, ... }: {
{ pkgs, username, ... }: {
home.packages = with pkgs; [
home-manager
];
sops = {
age.keyFile = /home/${username}/.config/sops/age/keys.txt;
defaultSopsFile = ../hosts/${hostname}/secrets.yaml;
secrets = {
local_git_config.path = "/home/${username}/.gitconfig-local";
local_private_env.path = "/home/${username}/.private-env";
};
defaultSopsFile = ../home-only/secrets.yaml;
# secrets = {
# local_git_config.path = "/home/${username}/.gitconfig-local";
# local_private_env.path = "/home/${username}/.private-env";
# };
};
}