feat(system): remove sshfs

honestly, not sure why this was ever here.
probably just carried over from a drastically different place
This commit is contained in:
electria 2026-05-01 14:45:21 -07:00
commit dbc21e11be
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -1,5 +1,4 @@
{
pkgs,
lib,
config,
...
@ -12,19 +11,10 @@ in
{
options.nixowos.defaults.${name} = {
enable = lib.mkEnableOption name;
extraPackages = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = with pkgs; [
sshfs
];
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = lib.mkIf config.nixowos.allowAddingPackages cfg.extraPackages;
boot.loader.grub = lib.mkDefault {
# modern installation
device = "nodev";