modularized :)

This commit is contained in:
Odweta
2026-01-18 10:04:50 +01:00
parent 7b2365c5de
commit 4bae0ce922
49 changed files with 209 additions and 642 deletions
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
qbittorrent
];
}
+5
View File
@@ -0,0 +1,5 @@
{ pkgs, ... }:
{
programs.steam.enable = true;
}
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ungoogled-chromium
];
}
+8
View File
@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wine
winetricks # helpful for installing Windows components
];
}