development and gaming attributes

This commit is contained in:
2026-07-07 13:51:40 +01:00
parent 52e9f0a94c
commit 3a5d414b43
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
self,
inputs,
...
}: {
flake.nixosModules.development = {
pkgs,
lib,
...
}: let
modules = with self.nixosModules; [
git
nvim
];
in {
imports = modules;
environment.systemPackages = with pkgs; [
opencode
devenv
];
};
}

View File

@@ -0,0 +1,17 @@
{
self,
inputs,
...
}: {
flake.nixosModules.gaming = {
pkgs,
lib,
...
}: let
modules = with self.nixosModules; [
steam
];
in {
imports = modules;
};
}