This commit is contained in:
2026-03-22 21:40:02 +00:00
parent b917372b8a
commit c14a95e58e
+7 -1
View File
@@ -1,5 +1,11 @@
{inputs, ...}: {
{config, ...}: let
flakeConfig = config;
in {
flake.nixosModules.development = {pkgs, ...}: {
virtualisation.docker.enable = true;
users.users.${flakeConfig.username}.extraGroups = ["docker"];
environment.systemPackages = with pkgs; [
nodejs_24
go