update laptop

This commit is contained in:
marty 2026-05-14 09:31:11 +02:00
parent b11e8347c1
commit 0c8f46bac5
4 changed files with 263 additions and 97 deletions

View file

@ -2,38 +2,26 @@
config,
lib,
pkgs,
modulesPath,
home-manager,
inputs,
...
}:
{
networking = {
hostName = "marty-latitude";
};
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
users = {
marty = import ./home.nix;
"${config.user.userName}" = import ./home.nix;
};
};
main-user = {
userName = "marty";
shell = pkgs.fish;
};
imports = [
./hardware.nix
# ../../modules/server/nginx.nix
./custom.nix
./options.nix
];
programs = {
light.enable = true;
};
services.flatpak.enable = true;
system.stateVersion = "25.11"; # Did you read the comment?
}