2024-05-05 00:50:32 +02:00
|
|
|
{ inputs, pkgs, ... }:
|
2023-05-10 19:59:21 +02:00
|
|
|
|
|
|
|
|
{
|
2023-06-03 05:42:48 +02:00
|
|
|
imports = [
|
2024-05-12 20:16:39 +02:00
|
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480s
|
2023-06-03 05:42:48 +02:00
|
|
|
./hardware-configuration.nix
|
2023-07-02 00:18:17 +02:00
|
|
|
../shared-desktop.nix
|
2023-06-03 05:42:48 +02:00
|
|
|
../shared.nix
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "laptop";
|
2023-05-11 15:36:33 +02:00
|
|
|
|
2025-01-01 18:47:37 +00:00
|
|
|
boot.initrd = {
|
|
|
|
|
luks.devices = {
|
|
|
|
|
cryptroot = {
|
2025-01-07 16:14:44 +00:00
|
|
|
device = "/dev/disk/by-uuid/f1b5a08f-e515-4fba-b3f4-2a1091063cdc";
|
2025-01-01 18:47:37 +00:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2024-08-07 11:31:13 +02:00
|
|
|
home-manager.users.thiloho =
|
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
{
|
2024-08-25 21:32:25 +02:00
|
|
|
programs.git.signing.key = "3B62137A89493F7D";
|
2024-08-07 11:31:13 +02:00
|
|
|
home = {
|
2025-01-05 15:39:39 +01:00
|
|
|
stateVersion = "24.11";
|
2024-08-07 11:31:13 +02:00
|
|
|
};
|
|
|
|
|
};
|
2025-01-05 15:39:39 +01:00
|
|
|
system.stateVersion = "24.11";
|
2023-05-10 19:59:21 +02:00
|
|
|
}
|