Temp fix to enable zsh

This commit is contained in:
Evie Litherland-Smith 2023-08-05 18:12:45 +01:00
parent d72a4738c4
commit 32c5715547

View file

@ -1,14 +1,15 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ { pkgs
pkgs, , userConfig
userConfig, , ...
... }:
}: let let
user = "xenia"; user = "xenia";
hostName = "Vanguard"; hostName = "Vanguard";
in { in
{
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
@ -29,19 +30,7 @@ in {
}; };
system.autoUpgrade.enable = false; system.autoUpgrade.enable = false;
environment.systemPackages = with pkgs; [ mesa ]; environment.systemPackages = with pkgs; [ mesa ];
programs = { programs.zsh.enable = true;
xwayland.enable = true;
hyprland.enable = true;
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
remotePlay.openFirewall = true;
gamescopeSession.enable = true;
};
};
users.users.${user} = userConfig; users.users.${user} = userConfig;
services.greetd = { services.greetd = {