Initial import
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
description = "Gaming-focused NixOS config with COSMIC and Chaotic-Nyx";
|
||||
|
||||
nixConfig = {
|
||||
extra-substituters = [
|
||||
"https://nyx-cache.chaotic.cx/"
|
||||
];
|
||||
extra-trusted-public-keys = [
|
||||
"nyx-cache.chaotic.cx:dJxTrgMC3V3cFfyIiBQDQorG6k1LsqurH/srpMSq7qk="
|
||||
];
|
||||
};
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ nixpkgs, chaotic, ... }:
|
||||
{
|
||||
nixosConfigurations.nixos-gaming = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
chaotic.nixosModules.default
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user