nix/hosts/peach.nix
2025-11-05 13:40:27 -05:00

22 lines
403 B
Nix

{ config, pkgs, lib, catppuccin, ... }: {
networking.hostName = "peach";
catppuccin = {
accent = "peach";
};
home-manager.users.sckova = {
imports = [ catppuccin.homeModules.catppuccin ];
};
hardware.asahi = {
extractPeripheralFirmware = true;
peripheralFirmwareDirectory = ../firmware;
};
swapDevices = [{
device = "/swapfile";
size = 32000; # 32GB
}];
}