nixos-configs/nixosConfigurations/damocles/default.nix

25 lines
423 B
Nix
Raw Normal View History

2026-04-12 21:37:14 +02:00
{ pkgs, self, ... }:
2026-04-10 11:49:11 +02:00
{
2026-04-12 21:37:14 +02:00
nixpkgs.overlays = [ self.overlays.unstable-packages ];
2026-04-10 11:49:11 +02:00
boot.isContainer = true;
allowedUnfreePackages = [ "claude-code" ];
environment.systemPackages = with pkgs; [
unstable.claude-code
git
python3
2026-04-18 16:38:17 +02:00
coreutils-full
gawk
gnugrep
2026-04-10 11:49:11 +02:00
];
users.users.muede = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
security.sudo.wheelNeedsPassword = false;
}