wip: refactor structure
This commit is contained in:
parent
32ab27ac62
commit
5b648d9784
5 changed files with 173 additions and 169 deletions
34
system/hosts/peach/default.nix
Normal file
34
system/hosts/peach/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
catppuccin,
|
||||
...
|
||||
}:
|
||||
{
|
||||
networking.hostName = "peach";
|
||||
|
||||
catppuccin.accent = "peach";
|
||||
|
||||
home-manager.users.sckova = {
|
||||
imports = [ catppuccin.homeModules.catppuccin ];
|
||||
};
|
||||
|
||||
hardware.asahi = {
|
||||
enable = true;
|
||||
setupAsahiSound = true;
|
||||
# extractPeripheralFirmware = false;
|
||||
# This is broken because of flake git tracking.
|
||||
# I can't figure out how to make it work.
|
||||
peripheralFirmwareDirectory = ./firmware;
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/swapfile";
|
||||
size = 32000; # 32GB
|
||||
}
|
||||
];
|
||||
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue