Skip to content

Commit

Permalink
feat(recover): add fs's, enable wireless, disable networkmanager
Browse files Browse the repository at this point in the history
  • Loading branch information
klarkc committed Dec 19, 2023
1 parent aeabc7a commit fd2bdae
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion recover.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,22 @@
};
networking = {
hostName = "recover";
networkmanager.enable = true;
wireless = {
enable = true;
userControlled.enable = true;
};
};
boot = {
supportedFilesystems = [
"btrfs"
"exfat"
"ext2"
"ext4"
"ntfs"
"vfat"
"xfs"
"zfs"
];
loader = {
timeout = 15;
grub = {
Expand Down

0 comments on commit fd2bdae

Please sign in to comment.