This commit is contained in:
2026-06-10 19:34:36 +02:00
parent 5c4164ac11
commit bb427145df
14 changed files with 166 additions and 138 deletions
+9 -7
View File
@@ -1,5 +1,5 @@
{
description = "Gaming-focused NixOS config with COSMIC and Chaotic-Nyx";
description = "Reusable NixOS gaming desktop template with selectable desktop and GPU modules";
nixConfig = {
extra-substituters = [
@@ -18,12 +18,14 @@
outputs =
{ nixpkgs, chaotic, ... }:
{
nixosConfigurations.nixos-gaming = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
chaotic.nixosModules.default
./configuration.nix
];
nixosConfigurations = {
template = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
chaotic.nixosModules.default
./configuration.nix
];
};
};
};
}