2024-04-25 08:25:23 +02:00
|
|
|
{ inputs, ... }:
|
2023-05-10 19:59:21 +02:00
|
|
|
|
|
|
|
|
{
|
2023-06-03 05:42:48 +02:00
|
|
|
imports = [
|
2023-09-19 21:34:45 +02:00
|
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480
|
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
|
|
|
|
2023-06-03 05:42:48 +02:00
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
2024-04-04 23:35:17 +02:00
|
|
|
programs.git.signing.key = "BFD8F6A55B1E4F11";
|
2024-04-25 08:25:23 +02:00
|
|
|
home = { stateVersion = "23.05"; };
|
2023-06-03 05:42:48 +02:00
|
|
|
};
|
2023-07-02 00:18:17 +02:00
|
|
|
system.stateVersion = "23.05";
|
2023-05-10 19:59:21 +02:00
|
|
|
}
|