17 lines
309 B
Nix
17 lines
309 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
/* programs.firefox.enable = true; */
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gparted
|
|
];
|
|
|
|
# used by gparted?
|
|
boot.supportedFilesystems.ntfs = true;
|
|
boot.supportedFilesystems.vfat = true;
|
|
boot.supportedFilesystems.xfs = true;
|
|
boot.supportedFilesystems.exfat = true;
|
|
|
|
}
|