make some apps desktop-only

This commit is contained in:
Elnu 2023-02-14 16:53:01 -08:00
parent db291c0b80
commit 7bc8cfefef
2 changed files with 18 additions and 1 deletions

14
hosts/desktop/apps.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Command line utilities
wine
# Programming languages
jdk
# Games
prismlauncher
];
}

View file

@ -1,5 +1,8 @@
{ ... }:
{
imports = [ (import ./i3) ];
imports = [
(import ./apps.nix)
(import ./i3)
];
}