Add: Penduick on Thinkpad T480

This commit is contained in:
DuN0z 2025-10-29 18:31:07 +01:00
parent e2177beef1
commit cfe1fbf185
5 changed files with 183 additions and 1 deletions

View file

@ -38,7 +38,6 @@
};
in {
nixosConfigurations = {
pennsardin = nixpkgs-unstable.lib.nixosSystem {
specialArgs = { inherit nvim-config; };
system = "x86_64-linux";
@ -79,6 +78,32 @@
];
};
penduick = nixpkgs-unstable.lib.nixosSystem {
specialArgs = { inherit nvim-config; };
system = "x86_64-linux";
pkgs = mkUnstablePkgsWithNur {
system = "x86_64-linux";
config = {
allowUnfree = true;
allowUnsupportedSystem = true;
};
};
modules = [
./hosts/penduick/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true ;
useUserPackages = true ;
extraSpecialArgs = {inherit nvim-config; };
};
}
agenix.nixosModules.default
];
};
forbann = nixpkgs-stable.lib.nixosSystem {
system = "x86_64-linux";
modules = [