Initial commit

This commit is contained in:
alsaiduq-lab 2025-03-13 14:50:27 -06:00
commit e886de58af
23 changed files with 926 additions and 0 deletions

48
flake.nix Normal file
View file

@ -0,0 +1,48 @@
{
description = "NixOS configuration for Cobray";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-gaming = {
url = "github:fufexan/nix-gaming";
};
};
outputs = { self, nixpkgs, home-manager, nixvim, nix-gaming, ... }@inputs:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
};
};
lib = nixpkgs.lib;
in {
nixosConfigurations = {
nixos = lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
inherit system;
};
modules = [
./hosts/configuration.nix
];
};
};
};
}