chore(marr): clean swayidle and steam
This commit is contained in:
parent
fe2326b9aa
commit
208bea6f60
4 changed files with 21 additions and 8 deletions
|
@ -7,6 +7,10 @@
|
|||
...
|
||||
}:
|
||||
lib.mkIf osConfig.programs.sway.enable {
|
||||
|
||||
services.swayidle.enable = true;
|
||||
programs.hyprlock.enable = true;
|
||||
|
||||
wayland.windowManager.sway =
|
||||
let
|
||||
homeDirectory = config.home.homeDirectory;
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
pkgs,
|
||||
inputs,
|
||||
username,
|
||||
pubkeys,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
|
||||
services = {
|
||||
blueman-applet.enable = true;
|
||||
swayidle.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -4,11 +4,22 @@
|
|||
config,
|
||||
...
|
||||
}:
|
||||
lib.mkIf config.programs.steam.enable {
|
||||
programs.steam = {
|
||||
gamescopeSession.enable = true; # Adds a steam entry to the login manager
|
||||
extest.enable = true;
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||||
{
|
||||
config = lib.mkIf config.programs.steam.enable {
|
||||
programs.gamescope = {
|
||||
enable = true;
|
||||
capSysNice = true;
|
||||
};
|
||||
|
||||
environment = {
|
||||
systemPackages = [ pkgs.mangohud ];
|
||||
};
|
||||
|
||||
programs.steam = {
|
||||
gamescopeSession.enable = true; # Adds a steam entry to the login manager
|
||||
extest.enable = true;
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue