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 = [ ];
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";
}

View file

@ -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
];
}