17 lines
326 B
Nix
17 lines
326 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;
|
|
};
|
|
}
|
|
|