refactor: change name of desktop host name

This commit is contained in:
ooks-io 2024-02-11 20:59:44 +13:00
parent 036fbcfcf2
commit 878f272b03

View file

@ -0,0 +1,22 @@
{ config, inputs, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../profiles
];
activeProfiles = ["base" "nvidia"];
systemModules.user = {
ooks.enable = true;
shell.fish.enable = true;
};
networking = {
hostName = "ooksdesk";
};
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
};
}