feat: add "ubuntu" config for containers

This commit is contained in:
Michael Mandl 2024-12-16 14:06:34 +01:00
parent 69f965cdc8
commit 4be4a7979f
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2

View file

@ -59,6 +59,27 @@
vimwikiPath = "~/vimwiki"; vimwikiPath = "~/vimwiki";
}; };
}; };
"ubuntu" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./shell
./git
./gpg
./neovim
./horsch.nix
];
extraSpecialArgs = {
user = "ubuntu";
userName = "Michael Mandl";
userEmail = "michael.mandl@horsch.com";
gpgSigningKey = "088ED38F036C7AF2";
gpgSSHKeys = [ "AEB2BF3FF9CF9529E9A3C6F1A202D21686FF9278" ];
theme = "dark";
vimwikiPath = "~/vimwiki";
};
};
}; };
}; };
} }