summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/common/default.nix2
-rw-r--r--nixos/hosts/icetea-dispenser/hardware-configuration.nix6
2 files changed, 5 insertions, 3 deletions
diff --git a/nixos/common/default.nix b/nixos/common/default.nix
index a186c1b..c76dc51 100644
--- a/nixos/common/default.nix
+++ b/nixos/common/default.nix
@@ -32,7 +32,9 @@
# services.xserver.enable = true;
# Define a user account. Don't forget to set a password with ‘passwd’.
+ programs.zsh.enable = true;
users.users.wilkuu = {
+ shell = pkgs.zsh;
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
packages = with pkgs; [
diff --git a/nixos/hosts/icetea-dispenser/hardware-configuration.nix b/nixos/hosts/icetea-dispenser/hardware-configuration.nix
index f321cd0..bab6718 100644
--- a/nixos/hosts/icetea-dispenser/hardware-configuration.nix
+++ b/nixos/hosts/icetea-dispenser/hardware-configuration.nix
@@ -136,7 +136,7 @@ menuentry 'UEFI Firmware' $menuentry_id_option 'uefi-firmware' {
# Enable the Nvidia settings menu,
# accessible via `nvidia-settings`.
- nvidiaSettings = false;
+ nvidiaSettings = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU.
package = config.boot.kernelPackages.nvidiaPackages.production;
@@ -149,8 +149,8 @@ menuentry 'UEFI Firmware' $menuentry_id_option 'uefi-firmware' {
sync.enable = false;
- intelBusId = "PCI:1:0:0";
- nvidiaBusId = "PCI:0:2:0";
+ intelBusId = "PCI:0:2:0";
+ nvidiaBusId = "PCI:1:0:0";
};
};
}