Files
nixos-config/nixos-configurations/laptop/default.nix

31 lines
582 B
Nix
Raw Normal View History

{ inputs, pkgs, ... }:
{
imports = [
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480s
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../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 = {
device = "/dev/disk/by-uuid/82ba475d-faa1-488f-82c4-77c1b7bb48da";
};
};
};
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 = {
stateVersion = "24.11";
2024-08-07 11:31:13 +02:00
};
};
system.stateVersion = "24.11";
}