Add games directory

This commit is contained in:
Nina Chlóe Kassandra Reiß
2026-04-23 11:51:12 +02:00
parent ac4b17da6a
commit 3ee898c4b3
4 changed files with 31 additions and 0 deletions

14
applications/games.nix Normal file
View File

@@ -0,0 +1,14 @@
{
config,
pkgs,
lib,
...
}:
let
profile = import ./profile.nix;
in
{
home.packages = with pkgs; [
lincity-ng
];
}

View File

@@ -8,6 +8,7 @@ in
./browser.nix ./browser.nix
./window-manager.nix ./window-manager.nix
../applications/matrix.nix ../applications/matrix.nix
../applications/games.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [

View File

@@ -5,6 +5,7 @@ in
{ {
imports = [ imports = [
./distros-common.nix
./file-system.nix ./file-system.nix
./media.nix ./media.nix
./ssh.nix ./ssh.nix

View File

@@ -0,0 +1,15 @@
{ pkgs, lib, ... }:
let
profile = import ../profile.nix;
in
{
imports = [
];
home.packages = with pkgs; [
distrobox
distrobox-tui
distroshelf
];
}