blueberry: reimaged

This commit is contained in:
41666 2023-12-21 23:28:11 -05:00
parent aa072756ea
commit c5d34120e9
2 changed files with 12 additions and 4 deletions

View file

@ -14,12 +14,12 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/cc75594b-3158-455a-9230-b634128713ae"; { device = "/dev/disk/by-uuid/4f8dd009-2ca1-4237-92ac-3fbc3823781d";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1FFC-3FAC"; { device = "/dev/disk/by-uuid/45FC-9E5B";
fsType = "vfat"; fsType = "vfat";
}; };
@ -34,4 +34,3 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { { lib, pkgs, ... }: {
imports = [ imports = [
./base.nix ./base.nix
@ -6,6 +6,8 @@
./features/tailscale.nix ./features/tailscale.nix
]; ];
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
services.openssh.settings.PasswordAuthentication = false; services.openssh.settings.PasswordAuthentication = false;
system.autoUpgrade = { system.autoUpgrade = {
@ -17,4 +19,11 @@
}; };
}; };
environment.systemPackages = with pkgs; [
curl
btop
htop
neofetch
];
} }