working on home manager spreading though the nix files

This commit is contained in:
Julian Sutter 2023-01-23 08:57:22 -08:00
parent 30f378b063
commit 5153dc64f6
4 changed files with 36 additions and 14 deletions

View file

@ -3,6 +3,16 @@
{
fileSystems."/" =
{ device = "/dev/disk/by-partlabel/primary";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-partlabel/ESP";
fsType = "vfat";
};
nixpkgs.config.allowUnfree = true;
users.users.jsutter = {