Update README.md & steam
This commit is contained in:
parent
153c1a8359
commit
60f9b486b8
@ -6,8 +6,8 @@
|
||||
...
|
||||
</h1>
|
||||
<h1 align="center">
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./colors/palette0.png"></img>
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./modules/shared/colors/palette0.png"></img>
|
||||
<br>
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./colors/palette1p.png"></img>
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./colors/palette1h.png"></img>
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./modules/shared/colors/palette1p.png"></img>
|
||||
<img width="256" style="image-rendering: crisp-edges;" src="./modules/shared/colors/palette1h.png"></img>
|
||||
</h1>
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ ... }: {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
#enable = true;
|
||||
languages = { };
|
||||
settings = { };
|
||||
themes = { };
|
||||
|
@ -4,12 +4,11 @@
|
||||
|
||||
config = lib.mkIf (config.homecfg.make.game) {
|
||||
|
||||
# programs.steam.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
custom.simc
|
||||
|
||||
#games
|
||||
steam
|
||||
gamemode
|
||||
gamescope
|
||||
mangohud
|
||||
|
14
modules/nixos/gui/games/default.nix
Normal file
14
modules/nixos/gui/games/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let cfg = config.hostcfg.make.game;
|
||||
in {
|
||||
config = lib.mkIf cfg {
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall =
|
||||
true; # Open ports in the firewall for Steam Remote Play
|
||||
dedicatedServer.openFirewall =
|
||||
true; # Open ports in the firewall for Source Dedicated Server
|
||||
};
|
||||
};
|
||||
}
|
@ -4,10 +4,26 @@ with lib; {
|
||||
hostname = mkOption { type = types.str; };
|
||||
username = mkOption { type = types.str; };
|
||||
make = {
|
||||
cli = mkOption { type = types.bool; };
|
||||
gui = mkOption { type = types.bool; };
|
||||
virt = mkOption { type = types.bool; };
|
||||
power = mkOption { type = types.bool; };
|
||||
cli = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
gui = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
virt = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
power = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
game = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
net = {
|
||||
wlp = {
|
||||
@ -15,7 +31,10 @@ with lib; {
|
||||
nif = mkOption { type = types.str; };
|
||||
};
|
||||
wg = {
|
||||
enable = mkOption { type = types.bool; };
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
};
|
||||
ip4 = mkOption { type = types.str; };
|
||||
ip6 = mkOption { type = types.str; };
|
||||
pk = mkOption { type = types.str; };
|
||||
|
@ -13,6 +13,7 @@
|
||||
cli = true;
|
||||
virt = true;
|
||||
power = false;
|
||||
game = true;
|
||||
};
|
||||
net = {
|
||||
wlp = {
|
||||
|
@ -13,6 +13,7 @@
|
||||
cli = true;
|
||||
virt = true;
|
||||
power = true;
|
||||
game = true;
|
||||
};
|
||||
net = {
|
||||
wlp = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user