feat: ooksmicro host added to system & home

This commit is contained in:
ooks-io 2024-02-16 13:47:38 +13:00
parent 6af6edf819
commit e1b874c563
5 changed files with 60 additions and 116 deletions

View file

@ -0,0 +1,26 @@
{ config, inputs, pkgs, ... }:
{
imports = [
inputs.hardware.nixosModules.gpd-micropc
./hardware-configuration.nix
../../profiles
];
activeProfiles = ["base" "laptop"];
systemModules.user = {
ooks.enable = true;
shell.fish.enable = true;
};
networking = {
hostName = "ooksmicro";
};
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
kernelParams = [ "fbcon=rotate:1" ];
};
}