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