hosts: Infini-STICK -> hermes

This commit is contained in:
Infinidoge 2024-12-04 11:01:10 -05:00
parent ccbca3a6c9
commit 87c9ff22c6
No known key found for this signature in database
4 changed files with 1 additions and 1 deletions

22
hosts/hermes/default.nix Normal file
View file

@ -0,0 +1,22 @@
{ pkgs, ... }: {
imports = [
./hardware-configuration.nix
./disks.nix
];
system.stateVersion = "24.11";
networking.hostId = "deadbeef";
boot.kernelPackages = pkgs.linuxPackages;
modules = {
hardware = {
audio.enable = true;
form.portable = true;
};
};
specialisation.graphical.configuration = {
modules.desktop.wm.enable = true;
};
}