nixos-config/hosts/neo/configuration.nix

38 lines
805 B
Nix
Raw Normal View History

2021-04-10 16:55:17 +00:00
{ pkgs, ... }:
{
sconfig = {
gnome = true;
profile = "desktop";
security-tools = true;
};
networking = {
search = [ "bck.me" ];
};
2021-04-18 15:16:11 +00:00
environment.systemPackages = with pkgs; [
vmware-horizon-client
wine
winetricks
];
2021-04-10 16:55:17 +00:00
services = {
openssh.enable = true;
zfs.autoSnapshot = { enable = true; monthly = 0; weekly = 0; };
};
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
2021-06-16 02:55:42 +00:00
kernelParams = map (x: "video=DP-${x}:1280x720@60") [ "0" "1" "2" ];
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/_esp"; fsType = "vfat"; };
};
system.stateVersion = "20.09";
}