mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ config, pkgs, ... }:
|
|
let
|
|
persist = "/var/lib/persist-${config.networking.hostName}";
|
|
in
|
|
{
|
|
imports = [
|
|
./optimus.nix
|
|
];
|
|
|
|
environment.etc = {
|
|
"machine-id".source = "${persist}/machine-id";
|
|
"NetworkManager/system-connections".source =
|
|
"${persist}/network-connections";
|
|
};
|
|
|
|
systemd.tmpfiles.rules = [ "d ${persist}/network-connections 0700" ];
|
|
|
|
services.openssh.hostKeys = [
|
|
{ type = "ed25519"; path = "${persist}/ssh_host_ed25519_key"; }
|
|
];
|
|
|
|
sconfig = {
|
|
gnome = true;
|
|
profile = "desktop";
|
|
gaming.enable = true;
|
|
horizon.enable = true;
|
|
wg-home.enable = true;
|
|
};
|
|
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
initrd.availableKernelModules = [ "xhci_pci" "vmd" "nvme" "sd_mod" ];
|
|
};
|
|
|
|
fileSystems = {
|
|
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
|
|
"/boot" = { fsType = "vfat"; device = "/dev/nvme0n1p1"; };
|
|
"/nix" = { device = "levi/nix"; fsType = "zfs"; };
|
|
"/home" = { device = "levi/home"; fsType = "zfs"; };
|
|
"/var/lib" = { device = "levi/lib"; fsType = "zfs"; };
|
|
"/var/log" = { device = "levi/log"; fsType = "zfs"; };
|
|
};
|
|
|
|
users.mutableUsers = false;
|
|
users.users.sean.passwordFile = "${persist}/shadow_sean";
|
|
users.users.root.passwordFile = "${persist}/shadow_sean";
|
|
|
|
services.openssh.enable = true;
|
|
hardware.video.hidpi.enable = true;
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
hardware.enableRedistributableFirmware = true;
|
|
system.stateVersion = "22.05";
|
|
}
|