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
@ -20,7 +21,7 @@ in {
boot.loader.efi.canTouchEfiVariables = true;
networking = {
hostName = hostName; # Define your hostname.
nameservers = ["192.168.1.230" "9.9.9.9"];
nameservers = [ "192.168.1.230" "9.9.9.9" ];
};
hardware = {
bluetooth.enable = true;
@ -28,20 +29,8 @@ in {
steam-hardware.enable = true;
};
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;
};
};
environment.systemPackages = with pkgs; [ mesa ];
programs.zsh.enable = true;
users.users.${user} = userConfig;
services.greetd = {