host glonass got added

This commit is contained in:
2026-07-09 22:26:14 +02:00
parent 0634620eee
commit a70f619feb
11 changed files with 291 additions and 2 deletions
+20
View File
@@ -46,6 +46,26 @@
}
];
};
# thinkpad t460
glonass = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs system; };
modules = [
nvf.nixosModules.default
./hosts/glonass/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
users.user = ./config/desktop/home/home.nix;
};
}
];
};
};
};
}