i thinkpad therefore i am
This commit is contained in:
parent
13c1a67609
commit
00da286651
7 changed files with 181 additions and 1 deletions
39
hosts/marty-thinkpad/default.nix
Normal file
39
hosts/marty-thinkpad/default.nix
Normal 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?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue