Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
4be4a7979f
feat: add "ubuntu" config for containers 2024-12-16 14:08:48 +01:00

View file

@ -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";
};
};
};
};
}