nixos-configs/nixosConfigurations/damocles/default.nix

19 lines
306 B
Nix
Raw Normal View History

2026-04-10 11:49:11 +02:00
{ 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;
}