2024-11-21 20:28:46 -08:00
|
|
|
{
|
|
|
|
lib,
|
2025-01-12 13:34:02 -08:00
|
|
|
config,
|
2024-11-21 20:28:46 -08:00
|
|
|
...
|
2025-01-12 13:34:02 -08:00
|
|
|
}: let
|
2024-11-21 20:28:46 -08:00
|
|
|
inherit (lib.marleyos) enabled;
|
2025-01-12 13:34:02 -08:00
|
|
|
in {
|
2024-11-21 20:28:46 -08:00
|
|
|
networking = {
|
|
|
|
computerName = "mairley";
|
|
|
|
hostName = "mairley";
|
|
|
|
localHostName = "mairley";
|
|
|
|
};
|
|
|
|
|
|
|
|
marleyos = {
|
|
|
|
appearance = {
|
|
|
|
base = enabled;
|
|
|
|
};
|
|
|
|
programs = {
|
|
|
|
fish = enabled;
|
|
|
|
wezterm = enabled;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users = {
|
2025-01-12 13:34:02 -08:00
|
|
|
knownUsers = ["marley"];
|
2024-11-21 20:28:46 -08:00
|
|
|
users."marley" = {
|
|
|
|
# This is required for some reason.
|
|
|
|
uid = 501;
|
|
|
|
|
2025-01-12 13:34:02 -08:00
|
|
|
shell = config.programs.fish.package;
|
2024-11-21 20:28:46 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
system.stateVersion = 5;
|
|
|
|
}
|