mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
35 lines
789 B
Nix
35 lines
789 B
Nix
{ pkgs, ... }:
|
|
{
|
|
sconfig = {
|
|
gnome = true;
|
|
profile = "desktop";
|
|
security-tools = true;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "neo";
|
|
search = [ "bck.me" ];
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.vmware-horizon-client ];
|
|
|
|
services = {
|
|
pcscd.enable = true;
|
|
openssh.enable = true;
|
|
zfs.autoSnapshot = { enable = true; monthly = 0; weekly = 0; };
|
|
};
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
kernelPackages = pkgs.linuxPackages_5_10;
|
|
};
|
|
|
|
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";
|
|
}
|