initial commit

This commit is contained in:
Sean Kovacs 2025-11-05 11:51:34 -05:00
commit 5d1efc4092
Signed by: sckova
GPG key ID: 00F325187C68651A
7 changed files with 493 additions and 0 deletions

17
hosts/peach.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, lib, catppuccin, ... }: {
networking.hostName = "peach";
catppuccin = {
accent = "peach";
};
home-manager.users.sckova = {
imports = [ catppuccin.homeModules.catppuccin ];
};
hardware.asahi = {
extractPeripheralFirmware = true;
peripheralFirmwareDirectory = ../firmware;
};
}