feat: add gaming stuff
This commit is contained in:
parent
2e6aa9551c
commit
616ece2f9e
2 changed files with 17 additions and 0 deletions
8
users/profiles/gaming/default.nix
Normal file
8
users/profiles/gaming/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
imports = [ ./steam.nix ];
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
multimc
|
||||||
|
lutris
|
||||||
|
];
|
||||||
|
}
|
9
users/profiles/gaming/steam.nix
Normal file
9
users/profiles/gaming/steam.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
(steam.override {
|
||||||
|
extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.steam.enable = true;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue