2024-03-17 22:13:28 -06:00
|
|
|
{ ... }:
|
|
|
|
let
|
|
|
|
userName = "luci";
|
|
|
|
email = "luci@fosscat.com";
|
|
|
|
hostName = "luci";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./nixos/hardware-configuration.nix
|
|
|
|
../shared/nix-gc.nix
|
|
|
|
../shared/server-configuration.nix
|
|
|
|
];
|
|
|
|
|
2024-03-17 22:48:36 -06:00
|
|
|
serverConfig = {
|
2024-03-17 22:13:28 -06:00
|
|
|
userName = userName;
|
|
|
|
hostName = hostName;
|
|
|
|
hostId = "09e1d908";
|
|
|
|
email = email;
|
|
|
|
sshEnable = true;
|
|
|
|
nfsEnable = true;
|
2024-03-18 09:53:08 -06:00
|
|
|
nfsRoot = "/nfs_export";
|
|
|
|
nfsExports = [ "/kage" ];
|
2024-03-18 12:45:31 -06:00
|
|
|
nfsIpExport = "192.168.1.1/24";
|
|
|
|
syncthingEnable = true;
|
2024-05-15 11:28:56 -06:00
|
|
|
caldavEnable = true;
|
2024-03-17 22:13:28 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
# deskCfg = {
|
|
|
|
# userName = userName;
|
|
|
|
# hostName = hostName;
|
|
|
|
# de = desktop;
|
|
|
|
# installGaming = gaming;
|
|
|
|
# };
|
|
|
|
|
|
|
|
nixGc.enable = true;
|
|
|
|
}
|