38 lines
512 B
Nix
38 lines
512 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
inherit (lib.marleyos) enabled;
|
||
|
in
|
||
|
{
|
||
|
networking = {
|
||
|
computerName = "mairley";
|
||
|
hostName = "mairley";
|
||
|
localHostName = "mairley";
|
||
|
};
|
||
|
|
||
|
marleyos = {
|
||
|
appearance = {
|
||
|
base = enabled;
|
||
|
};
|
||
|
programs = {
|
||
|
fish = enabled;
|
||
|
wezterm = enabled;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
users = {
|
||
|
knownUsers = [ "marley" ];
|
||
|
users."marley" = {
|
||
|
# This is required for some reason.
|
||
|
uid = 501;
|
||
|
|
||
|
shell = pkgs.fish;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
system.stateVersion = 5;
|
||
|
}
|