Files
infra/machines/rana/configuration.nix

15 lines
263 B
Nix

{ self, ... }:
{
imports = [
self.nixosModules.common
];
nixpkgs.hostPlatform = {
system = "x86_64-linux";
};
system.stateVersion = "25.11";
clan.core.sops.defaultGroups = [ "admins" ];
boot.kernelParams = [ "amdgpu.dcdebugmask=0x12" ];
}