2021-05-19 05:38:05 +00:00
|
|
|
{ pkgs, ... }:
|
2021-04-10 16:55:17 +00:00
|
|
|
{
|
|
|
|
services = {
|
|
|
|
openssh.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
sconfig = {
|
|
|
|
gnome = true;
|
|
|
|
profile = "desktop";
|
|
|
|
security-tools = true;
|
|
|
|
};
|
|
|
|
|
2021-06-04 21:46:40 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
vmware-horizon-client
|
|
|
|
];
|
|
|
|
|
2021-04-10 16:55:17 +00:00
|
|
|
networking = {
|
|
|
|
search = [ "bck.me" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
loader.systemd-boot.enable = true;
|
|
|
|
loader.efi.canTouchEfiVariables = false;
|
2021-05-19 05:38:05 +00:00
|
|
|
kernelPackages = pkgs.linuxPackages_5_11;
|
2021-04-10 16:55:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems = {
|
|
|
|
"/" = { device = "zroot/locker/os"; fsType = "zfs"; };
|
|
|
|
"/home" = { device = "zroot/locker/home"; fsType = "zfs"; };
|
|
|
|
"/boot" = { device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition"; fsType = "vfat"; };
|
|
|
|
};
|
|
|
|
|
|
|
|
system.stateVersion = "20.09";
|
|
|
|
}
|