Reviewed-on: #1 Co-authored-by: Evan Reichard <evan@reichard.io> Co-committed-by: Evan Reichard <evan@reichard.io>
56 lines
936 B
Nix
Executable File
56 lines
936 B
Nix
Executable File
{ namespace, lib, ... }:
|
|
let
|
|
inherit (lib.${namespace}) enabled;
|
|
in
|
|
{
|
|
system.stateVersion = "24.11";
|
|
time.timeZone = "America/New_York";
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
# System Config
|
|
reichard = {
|
|
nix = enabled;
|
|
|
|
system = {
|
|
boot = {
|
|
enable = true;
|
|
silentBoot = true;
|
|
};
|
|
disk = {
|
|
enable = true;
|
|
diskPath = "/dev/nvme0n1";
|
|
};
|
|
networking = {
|
|
enable = true;
|
|
enableIWD = true;
|
|
};
|
|
};
|
|
|
|
hardware = {
|
|
opengl = enabled;
|
|
};
|
|
|
|
services = {
|
|
avahi = enabled;
|
|
ydotool = enabled;
|
|
};
|
|
|
|
virtualisation = {
|
|
podman = enabled;
|
|
};
|
|
|
|
programs = {
|
|
graphical = {
|
|
wms.hyprland = enabled;
|
|
};
|
|
};
|
|
|
|
security = {
|
|
sops = {
|
|
enable = true;
|
|
defaultSopsFile = lib.snowfall.fs.get-file "secrets/lin-va-thinkpad/default.yaml";
|
|
};
|
|
};
|
|
};
|
|
}
|