Update from joey@joey-laptop: Add steam
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s

This commit is contained in:
Joey Hafner 2024-09-14 17:10:57 -07:00
parent 5b26aeb80b
commit bad7b9c8ed
3 changed files with 15 additions and 3 deletions

View File

@ -32,9 +32,13 @@
};
## Hyprland
programs.kitty.enable = true;
#wayland.windowManager.hyprland = {
# enable = true;
#};
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
plugins = [];
settings = {};
};
## Git
programs.git = {

View File

@ -6,6 +6,7 @@
./hardware-configuration.nix
./flatpak.nix
./kde.nix
./steam.nix
];
environment.etc."current-system-packages".text =

7
nix/nixos/steam.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
hardware.opengl.driSupport32Bit = true;
programs.steam.enable = true;
environment.systemPackages = [ pkgs.steam ];
}