update hardware-config

This commit is contained in:
2025-03-23 23:08:39 +01:00
parent 9e388357f3
commit 043b6f55c8
2 changed files with 7 additions and 4 deletions

View File

@@ -14,17 +14,20 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/fcd3cb1a-9ca3-42a1-981d-84b8a709eb26";
{ device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1A1E-0B59";
{ device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
swapDevices = [{
device = "/.swapfile";
size = 2048;
}];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's

View File

@@ -4,7 +4,7 @@ let
theme = builtins.fetchurl {
url =
"https://github.com/catppuccin/alacritty/raw/main/catppuccin-mocha.toml";
sha256 = "1rnc6gsqjdvkb6xbv1pnawrp6f0j5770dqml2di90j3lhv0fppgw";
sha256 = "1idjbm5jim9b36235hgwgp9ab81fmbij42y7h85l4l7cqcbyz74l";
};
in {
home.packages = with pkgs; [ fira-code alacritty-theme ];