diff --git a/nixos/hosts/blueberry/hardware-configuration.nix b/nixos/hosts/blueberry/hardware-configuration.nix index f153af8..e4bdbf5 100644 --- a/nixos/hosts/blueberry/hardware-configuration.nix +++ b/nixos/hosts/blueberry/hardware-configuration.nix @@ -14,12 +14,12 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/cc75594b-3158-455a-9230-b634128713ae"; + { device = "/dev/disk/by-uuid/4f8dd009-2ca1-4237-92ac-3fbc3823781d"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/1FFC-3FAC"; + { device = "/dev/disk/by-uuid/45FC-9E5B"; fsType = "vfat"; }; @@ -34,4 +34,3 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; } - diff --git a/nixos/server.nix b/nixos/server.nix index c5e23b4..d179171 100644 --- a/nixos/server.nix +++ b/nixos/server.nix @@ -1,10 +1,12 @@ -{ config, pkgs, ... }: { +{ lib, pkgs, ... }: { imports = [ ./base.nix ./features/tailscale.nix ]; + + boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; services.openssh.settings.PasswordAuthentication = false; @@ -16,5 +18,12 @@ upper = "07:00"; }; }; + + environment.systemPackages = with pkgs; [ + curl + btop + htop + neofetch + ]; }