32 lines
553 B
Nix
32 lines
553 B
Nix
{ ... }:
|
|
let
|
|
userName = "luci";
|
|
email = "luci@fosscat.com";
|
|
hostName = "luci";
|
|
in
|
|
{
|
|
imports = [
|
|
./nixos/hardware-configuration.nix
|
|
../shared/nix-gc.nix
|
|
../shared/server-configuration.nix
|
|
];
|
|
|
|
serverConfig = {
|
|
userName = userName;
|
|
hostName = hostName;
|
|
hostId = "09e1d908";
|
|
email = email;
|
|
sshEnable = true;
|
|
nfsEnable = true;
|
|
};
|
|
|
|
# deskCfg = {
|
|
# userName = userName;
|
|
# hostName = hostName;
|
|
# de = desktop;
|
|
# installGaming = gaming;
|
|
# };
|
|
|
|
nixGc.enable = true;
|
|
}
|