Temp fix to enable zsh
This commit is contained in:
parent
d72a4738c4
commit
32c5715547
|
@ -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
|
||||||
|
@ -20,7 +21,7 @@ in {
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
networking = {
|
networking = {
|
||||||
hostName = hostName; # Define your hostname.
|
hostName = hostName; # Define your hostname.
|
||||||
nameservers = ["192.168.1.230" "9.9.9.9"];
|
nameservers = [ "192.168.1.230" "9.9.9.9" ];
|
||||||
};
|
};
|
||||||
hardware = {
|
hardware = {
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
|
@ -28,20 +29,8 @@ in {
|
||||||
steam-hardware.enable = true;
|
steam-hardware.enable = true;
|
||||||
};
|
};
|
||||||
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 = {
|
||||||
|
|
Loading…
Reference in a new issue