30 lines
516 B
Nix
30 lines
516 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./file-system.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
ooknet = {
|
|
host = {
|
|
admin = {
|
|
name = "ooks";
|
|
shell = "fish";
|
|
homeManager = true;
|
|
};
|
|
};
|
|
workstation = {
|
|
profiles = ["media" "communication"];
|
|
environment = "hyprland";
|
|
theme = "minimal";
|
|
};
|
|
console = {
|
|
profile = "standard";
|
|
};
|
|
};
|
|
boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
|
|
system.stateVersion = lib.mkDefault "23.11";
|
|
}
|