nixos-configuration/nixosConfigurations/damocles/default.nix
2026-04-18 16:38:17 +02:00

24 lines
423 B
Nix

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