* flake.lock update, with code changes needed. * miniserve.rs static directory listing. * change from typst-ls to tinymist for typst lsp * deletion of hugo template. * change from self-built duckdns module to nixpkgs one.
11 lines
149 B
Nix
11 lines
149 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
virtualisation.docker.enable = true;
|
|
users.users.${config.host.user}.extraGroups = ["docker"];
|
|
}
|