nixos-configuration/nixosConfigurations/damocles/default.nix
2026-04-12 11:33:12 +02:00

19 lines
318 B
Nix

{ pkgs, ... }:
{
boot.isContainer = true;
allowedUnfreePackages = [ "claude-code" ];
environment.systemPackages = with pkgs; [
unstable.claude-code
git
python3
];
users.users.muede = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
security.sudo.wheelNeedsPassword = false;
}