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

18 lines
306 B
Nix

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