From 4be4a7979f4f0a7589bcdaa0292d659f8e6f41a7 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 16 Dec 2024 14:06:34 +0100 Subject: [PATCH] feat: add "ubuntu" config for containers --- flake.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/flake.nix b/flake.nix index 8737aba..0fe7fb7 100644 --- a/flake.nix +++ b/flake.nix @@ -59,6 +59,27 @@ 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"; + }; + }; }; }; }