Update system and settings to 23.05
This commit is contained in:
@@ -17,12 +17,11 @@
|
||||
../nixos-apps/jitsi.crueltysquad.com.nix
|
||||
../nixos-apps/cutesealfanpage.love.nix
|
||||
../nixos-apps/fancytypist.com.nix
|
||||
../nixos-apps/seal-blog
|
||||
# ../nixos-apps/seal-blog
|
||||
];
|
||||
|
||||
# Use the GRUB 2 boot loader.
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.version = 2;
|
||||
networking.usePredictableInterfaceNames = false;
|
||||
networking.hostName = "linode-nixos";
|
||||
|
||||
@@ -89,16 +88,18 @@
|
||||
# Enable Nix-ld for remote VSCode SSH to work
|
||||
programs.nix-ld.enable = true;
|
||||
environment.variables = {
|
||||
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
|
||||
NIX_LD_LIBRARY_PATH = lib.mkDefault (lib.makeLibraryPath [
|
||||
pkgs.stdenv.cc.cc
|
||||
];
|
||||
NIX_LD = lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||
]);
|
||||
NIX_LD = lib.mkDefault (lib.fileContents "${pkgs.stdenv.cc}/nix-support/dynamic-linker");
|
||||
};
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
permitRootLogin = "no";
|
||||
settings = {
|
||||
PermitRootLogin = "no";
|
||||
};
|
||||
};
|
||||
|
||||
# Open ports in the firewall.
|
||||
@@ -118,5 +119,5 @@
|
||||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "22.11"; # Did you read the comment?
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user