i thinkpad therefore i am

This commit is contained in:
martyTF 2026-02-22 11:21:07 +01:00
parent 13c1a67609
commit 00da286651
7 changed files with 181 additions and 1 deletions

View file

@ -0,0 +1,39 @@
{
config,
lib,
pkgs,
home-manager,
inputs,
...
}:
{
networking = {
hostName = "marty-thinkpad";
};
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
users = {
marty = import ./home.nix;
};
};
main-user = {
userName = "marty";
shell = pkgs.fish;
};
imports = [
./hardware.nix
# ../../modules/server/nginx.nix
];
programs = {
light.enable = true;
};
services.flatpak.enable = true;
system.stateVersion = "24.11"; # Did you read the comment?
}