2025-04-30 23:13:58 -05:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
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
|
|
|
|
2024-10-18 09:12:37 -05:00
|
|
|
boot = {
|
|
|
|
|
loader = {
|
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
|
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;
|
2025-05-14 21:19:49 -05:00
|
|
|
podman.enable = true;
|
2024-10-03 11:26:39 -05:00
|
|
|
print.enable = true;
|
|
|
|
|
tailscale.enable = true;
|
|
|
|
|
vmdev = {
|
|
|
|
|
enable = true;
|
|
|
|
|
system = "intel";
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
|
|
|
|
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
|
|
|
|
|
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-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
|
|
|
|
|
|
|
|
users.users.greg.extraGroups = [ "podman" ];
|
2024-05-05 14:37:58 -05:00
|
|
|
}
|