Updated file systems
This commit is contained in:
parent
05c3919ac5
commit
56414230f8
|
@ -39,7 +39,7 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
"/var" = {
|
"/var" = {
|
||||||
device = "/dev/sda1";
|
device = "/dev/disk/by-label/var";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,6 +10,16 @@
|
||||||
|
|
||||||
networking.hostName = "pi-tri"; # Define your hostname.
|
networking.hostName = "pi-tri"; # Define your hostname.
|
||||||
|
|
||||||
|
# File systems unique to this host:
|
||||||
|
fileSystems = {
|
||||||
|
"/nix" = {
|
||||||
|
device = "/dev/disk/by-label/nix";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
disk/by-label/
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gnupg # GPL OpenPGP implementation
|
gnupg # GPL OpenPGP implementation
|
||||||
nix-zsh-completions # ZSH completions for Nix, NixOS, and NixOps
|
nix-zsh-completions # ZSH completions for Nix, NixOS, and NixOps
|
||||||
|
|
Loading…
Reference in a new issue