Add games directory
This commit is contained in:
14
applications/games.nix
Normal file
14
applications/games.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
profile = import ./profile.nix;
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
lincity-ng
|
||||
];
|
||||
}
|
||||
@@ -8,6 +8,7 @@ in
|
||||
./browser.nix
|
||||
./window-manager.nix
|
||||
../applications/matrix.nix
|
||||
../applications/games.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
@@ -5,6 +5,7 @@ in
|
||||
{
|
||||
|
||||
imports = [
|
||||
./distros-common.nix
|
||||
./file-system.nix
|
||||
./media.nix
|
||||
./ssh.nix
|
||||
|
||||
15
system-environment/distros-common.nix
Normal file
15
system-environment/distros-common.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
profile = import ../profile.nix;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
distrobox
|
||||
distrobox-tui
|
||||
distroshelf
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user