2025-04-30 23:13:58 -05:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
2025-10-30 20:19:28 -05:00
|
|
|
pkgs,
|
2025-05-10 21:08:05 -05:00
|
|
|
top,
|
2025-04-30 23:13:58 -05:00
|
|
|
...
|
|
|
|
|
}:
|
2024-05-05 14:37:58 -05:00
|
|
|
|
|
|
|
|
{
|
2025-05-10 21:08:05 -05:00
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
top.nix-hardware.nixosModules.framework-11th-gen-intel
|
|
|
|
|
];
|
2024-05-05 14:37:58 -05:00
|
|
|
|
2025-10-16 17:23:21 -05:00
|
|
|
age.secrets = {
|
2026-02-19 08:06:54 -06:00
|
|
|
compose-attic.file = ../../../secrets/compose/attic.env.age;
|
2025-10-16 17:23:21 -05:00
|
|
|
};
|
|
|
|
|
|
2024-10-18 09:12:37 -05:00
|
|
|
boot = {
|
|
|
|
|
loader = {
|
2026-04-17 15:43:57 -05:00
|
|
|
systemd-boot = {
|
|
|
|
|
enable = true;
|
|
|
|
|
memtest86.enable = true;
|
|
|
|
|
netbootxyz.enable = true;
|
|
|
|
|
};
|
2024-10-18 09:12:37 -05:00
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
|
};
|
|
|
|
|
binfmt.emulatedSystems = [
|
|
|
|
|
"i686-linux"
|
|
|
|
|
"aarch64-linux"
|
|
|
|
|
];
|
2024-10-03 11:26:39 -05:00
|
|
|
};
|
2025-04-30 23:13:58 -05:00
|
|
|
|
2024-10-03 11:26:39 -05:00
|
|
|
greg = {
|
|
|
|
|
home = true;
|
|
|
|
|
gnome.enable = true;
|
2026-03-28 23:24:52 -05:00
|
|
|
nebula = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
2025-05-14 21:19:49 -05:00
|
|
|
podman.enable = true;
|
2024-10-03 11:26:39 -05:00
|
|
|
print.enable = true;
|
2025-11-15 14:08:34 -06:00
|
|
|
tailscale = {
|
|
|
|
|
enable = true;
|
|
|
|
|
tags = [ "mobile" ];
|
|
|
|
|
};
|
2024-10-03 11:26:39 -05:00
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
2025-10-30 20:19:28 -05:00
|
|
|
hardware = {
|
|
|
|
|
graphics = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraPackages = with pkgs; [
|
|
|
|
|
intel-media-driver
|
2025-11-08 16:01:21 -06:00
|
|
|
intel-vaapi-driver
|
2025-10-30 20:19:28 -05:00
|
|
|
vpl-gpu-rt
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-30 21:57:11 -05:00
|
|
|
nix.settings = {
|
|
|
|
|
extra-platforms = config.boot.binfmt.emulatedSystems;
|
|
|
|
|
system-features = [ "gccarch-x86-64-v3" ];
|
|
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
2025-04-17 16:52:11 -05:00
|
|
|
networking = {
|
|
|
|
|
hostName = "exodus";
|
|
|
|
|
networkmanager.enable = lib.mkForce true;
|
|
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
2025-10-30 20:19:28 -05:00
|
|
|
programs = {
|
|
|
|
|
steam = {
|
|
|
|
|
enable = true;
|
|
|
|
|
protontricks.enable = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-07-22 09:46:44 -05:00
|
|
|
|
2025-05-10 21:08:05 -05:00
|
|
|
services = {
|
2025-05-12 19:43:33 -05:00
|
|
|
fprintd.enable = true;
|
|
|
|
|
fwupd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraRemotes = [ "lvfs-testing" ];
|
|
|
|
|
};
|
2025-05-10 21:08:05 -05:00
|
|
|
};
|
|
|
|
|
|
2025-02-15 13:01:20 -06:00
|
|
|
virtualisation = {
|
|
|
|
|
oci-containers.backend = "podman";
|
|
|
|
|
};
|
2025-05-30 00:24:25 -05:00
|
|
|
|
2025-07-22 09:46:44 -05:00
|
|
|
users.users.greg.extraGroups = [
|
|
|
|
|
"adbusers"
|
|
|
|
|
"kvm"
|
|
|
|
|
"podman"
|
|
|
|
|
];
|
2024-05-05 14:37:58 -05:00
|
|
|
}
|