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
|
2025-01-29 00:51:37 +01:00
|
|
|
|
|
|
|
|
../../modules/core.nix
|
|
|
|
|
../../modules/desktop.nix
|
|
|
|
|
../../modules/development.nix
|
|
|
|
|
../../modules/home.nix
|
|
|
|
|
../../modules/media.nix
|
2023-06-03 05:42:48 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "laptop";
|
2023-05-11 15:36:33 +02:00
|
|
|
|
2025-01-29 00:51:37 +01:00
|
|
|
boot.initrd.luks.devices.cryptroot = {
|
|
|
|
|
device = "/dev/disk/by-uuid/f1b5a08f-e515-4fba-b3f4-2a1091063cdc";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home-manager.users.thiloho = {
|
|
|
|
|
programs.git.signing.key = "3B62137A89493F7D";
|
|
|
|
|
home.stateVersion = "24.11";
|
2025-01-01 18:47:37 +00:00
|
|
|
};
|
|
|
|
|
|
2025-01-05 15:39:39 +01:00
|
|
|
system.stateVersion = "24.11";
|
2023-05-10 19:59:21 +02:00
|
|
|
}
|