2024-09-16 23:00:44 -05:00
|
|
|
{
|
|
|
|
"durincore" = mkNixosConfig {
|
|
|
|
# T470 Thinkpad Intel i7-6600U
|
|
|
|
# Backup Nix dev laptop
|
|
|
|
hostname = "durincore";
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hardwareModules = [
|
|
|
|
./nixos/profiles/hw-thinkpad-t470.nix
|
|
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t470s
|
|
|
|
];
|
|
|
|
profileModules = [
|
|
|
|
./nixos/profiles/role-workstation.nix
|
|
|
|
./nixos/profiles/role-dev.nix
|
2025-03-06 09:51:33 -06:00
|
|
|
{home-manager.users.jahanson = ./nixos/home/jahanson/workstation.nix;}
|
2024-09-16 23:00:44 -05:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
"legiondary" = mkNixosConfig {
|
|
|
|
# Legion 15arh05h AMD/Nvidia Ryzen 7 4800H
|
|
|
|
# Nix dev/gaming laptop
|
|
|
|
hostname = "legiondary";
|
|
|
|
system = "x86_64-linux";
|
|
|
|
hardwareModules = [
|
|
|
|
inputs.nixos-hardware.nixosModules.lenovo-legion-15arh05h
|
|
|
|
./nixos/profiles/hw-legion-15arh05h.nix
|
|
|
|
disko.nixosModules.disko
|
2025-03-06 09:51:33 -06:00
|
|
|
(import ./nixos/profiles/disko-nixos.nix {disks = ["/dev/nvme0n1"];})
|
2024-09-16 23:00:44 -05:00
|
|
|
];
|
|
|
|
profileModules = [
|
|
|
|
./nixos/profiles/role-dev.nix
|
|
|
|
./nixos/profiles/role-gaming.nix
|
|
|
|
./nixos/profiles/role-workstation.nix
|
2025-03-06 09:51:33 -06:00
|
|
|
{home-manager.users.jahanson = ./nixos/home/jahanson/workstation.nix;}
|
2024-09-16 23:00:44 -05:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|