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

28 lines
500 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
2024-05-05 00:36:43 +02:00
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
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 = "23.05";
};
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}