mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-17 05:05:06 +01:00
update to nixos 23.05
This commit is contained in:
parent
812e92b688
commit
8ac9e86f9a
4 changed files with 23 additions and 37 deletions
|
|
@ -66,7 +66,6 @@
|
|||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.version = 2;
|
||||
boot.loader.grub.device = "nodev";
|
||||
boot.loader.grub.efiSupport = true;
|
||||
boot.loader.grub.useOSProber = true;
|
||||
|
|
@ -155,9 +154,9 @@
|
|||
services.openssh = {
|
||||
enable = false;
|
||||
# Forbid root login through SSH.
|
||||
permitRootLogin = "no";
|
||||
settings.PermitRootLogin = "no";
|
||||
# Use keys only. Remove if you want to SSH using password (not recommended)
|
||||
passwordAuthentication = false;
|
||||
settings.PasswordAuthentication = false;
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -172,8 +171,6 @@
|
|||
git
|
||||
fish
|
||||
(steam.override {
|
||||
withPrimus = true;
|
||||
withJava = true;
|
||||
extraPkgs = pkgs: [ bumblebee glxinfo ];
|
||||
}).run
|
||||
# Wine for 32 and 64 bit applications
|
||||
|
|
@ -193,6 +190,10 @@
|
|||
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||||
};
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.java.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue