marleyos/hosts/mairley/default.nix

29 lines
502 B
Nix

{config, ...}: let
inherit (config.marleyos.my) name;
in {
networking = {
computerName = "mairley";
hostName = "mairley";
localHostName = "mairley";
};
marleyos = {
profiles.desktop = true;
};
users = {
knownUsers = [name];
users."${name}" = {
# This is required for some reason.
uid = 501;
shell = config.programs.fish.package;
};
};
home-manager.users."${name}" = {
home.stateVersion = "24.05";
};
system.stateVersion = 5;
}