Compare commits

..

2 Commits

Author SHA1 Message Date
Nina Chlóe Kassandra Reiß
e63d7aead2 Add luanti 2026-04-23 11:51:37 +02:00
Nina Chlóe Kassandra Reiß
3ee898c4b3 Add games directory 2026-04-23 11:51:12 +02:00
4 changed files with 32 additions and 0 deletions

15
applications/games.nix Normal file
View File

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

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
];
}