spin off games folder
This commit is contained in:
parent
1faa92d85b
commit
1666d20a66
5 changed files with 24 additions and 8 deletions
|
|
@ -97,7 +97,7 @@
|
|||
(import ./packages/overlay.nix)
|
||||
];
|
||||
}
|
||||
./system/all.nix
|
||||
./system
|
||||
./system/widevine
|
||||
./system/shell/fish.nix
|
||||
./system/tailscale
|
||||
|
|
@ -135,7 +135,7 @@
|
|||
home.username = user;
|
||||
home.homeDirectory = "/home/${user}";
|
||||
modules = [
|
||||
./home/all.nix
|
||||
./home
|
||||
./home/hosts/${hostname}.nix
|
||||
catppuccin.homeModules.catppuccin
|
||||
home-manager.homeModules.home-manager
|
||||
|
|
|
|||
|
|
@ -161,11 +161,10 @@
|
|||
browsh
|
||||
mosh
|
||||
spotify-player
|
||||
gh
|
||||
|
||||
# development & tooling
|
||||
gh
|
||||
jdk21_headless
|
||||
xorg.xcursorgen
|
||||
|
||||
# kde and kde theming
|
||||
kde-rounded-corners
|
||||
|
|
@ -178,10 +177,6 @@
|
|||
bitwarden-desktop
|
||||
qbittorrent
|
||||
|
||||
# gui applications ( games )
|
||||
openmw
|
||||
prismlauncher
|
||||
|
||||
# gui applications ( multimedia )
|
||||
audacity
|
||||
strawberry
|
||||
|
|
|
|||
14
home/games/minecraft/default.nix
Normal file
14
home/games/minecraft/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
(prismlauncher.override {
|
||||
jdks = [
|
||||
jdk25
|
||||
jdk21
|
||||
jdk17
|
||||
jdk8
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
||||
5
home/games/morrowind/default.nix
Normal file
5
home/games/morrowind/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ openmw ];
|
||||
}
|
||||
|
|
@ -54,6 +54,8 @@
|
|||
home-manager.users.sckova = {
|
||||
imports = [
|
||||
../home
|
||||
../home/games/minecraft
|
||||
../home/games/morrowind
|
||||
../home/graphical/discord
|
||||
../home/graphical/firefox
|
||||
../home/graphical/mpv
|
||||
Loading…
Add table
Add a link
Reference in a new issue