nixos-config/hosts/cube/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2022-03-07 16:10:35 +00:00
{ config, lib, pkgs, ... }:
2021-06-28 03:47:41 +00:00
{
sconfig = {
2021-09-07 02:36:43 +00:00
gnome = true;
2021-06-28 03:47:41 +00:00
profile = "desktop";
2022-01-14 20:02:18 +00:00
gaming.enable = true;
2022-03-03 15:46:24 +00:00
horizon.enable = true;
2021-06-28 03:47:41 +00:00
};
2022-07-25 01:49:19 +00:00
environment.etc.machine-id.source = "/var/lib/nixos/machine-id";
2021-08-13 21:13:00 +00:00
2022-07-25 01:49:19 +00:00
services.openssh = {
enable = true;
hostKeys = [
{ type = "ed25519"; path = "/var/lib/nixos/ssh_host_ed25519_key"; }
];
};
2021-06-28 03:47:41 +00:00
2021-08-14 00:05:30 +00:00
users.mutableUsers = false;
2022-07-25 01:49:19 +00:00
users.users.sean.passwordFile = "/var/lib/nixos/shadow_sean";
users.users.root.passwordFile = "/var/lib/nixos/shadow_sean";
2021-08-14 00:05:30 +00:00
2021-06-28 03:47:41 +00:00
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
kernelParams = map (x: "video=DP-${x}:1280x720@60") [ "0" "1" "2" ];
};
2022-06-17 17:06:41 +00:00
hardware.cpu.amd.updateMicrocode = true;
hardware.enableRedistributableFirmware = true;
2021-06-28 03:47:41 +00:00
fileSystems = {
2021-08-13 21:13:00 +00:00
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
2021-06-28 03:47:41 +00:00
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; };
2021-12-09 01:46:09 +00:00
"/home" = { device = "cube/locker/home"; fsType = "zfs"; };
2022-07-24 22:56:05 +00:00
"/nix" = { device = "cube/locker/nix"; fsType = "zfs"; };
"/var/lib" = { device = "cube/locker/lib"; fsType = "zfs"; };
2021-12-09 01:46:09 +00:00
"/var/log" = { device = "cube/locker/log"; fsType = "zfs"; };
2021-12-08 19:52:41 +00:00
};
2021-06-28 03:47:41 +00:00
2022-07-29 04:01:21 +00:00
system.stateVersion = "22.05";
2021-06-28 03:47:41 +00:00
}