Improve folder structure

This commit is contained in:
Dave Gallant
2021-01-16 23:31:14 -05:00
parent 3e13f04043
commit 73e8011316
11 changed files with 300 additions and 164 deletions

9
nix/main/kernel.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
# Use the latest stable kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# Enable support for additional filesystems
boot.supportedFilesystems = [ "ntfs" ];
}