laptop: add initial config for Yura-TPX13

This commit is contained in:
2025-05-30 18:30:05 -07:00
parent eae016b50c
commit 2f85b081ab
3 changed files with 269 additions and 0 deletions

View File

@@ -48,6 +48,26 @@
}
];
};
Yura-TPX13 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./modules
./hosts/common.nix
./hosts/Yura-TPX13
./users/cazzzer
# https://nix-community.github.io/home-manager/index.xhtml#sec-flakes-nixos-module
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.sharedModules = [ plasma-manager.homeManagerModules.plasma-manager ];
home-manager.users.cazzzer = import ./home;
# Optionally, use home-manager.extraSpecialArgs to pass
# arguments to home.nix
}
];
};
VM = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [