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:
parent
482d42cc05
commit
dbc21e11be
1 changed files with 0 additions and 10 deletions
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
|
|
@ -12,19 +11,10 @@ in
|
||||||
{
|
{
|
||||||
options.nixowos.defaults.${name} = {
|
options.nixowos.defaults.${name} = {
|
||||||
enable = lib.mkEnableOption name;
|
enable = lib.mkEnableOption name;
|
||||||
|
|
||||||
extraPackages = lib.mkOption {
|
|
||||||
type = lib.types.listOf lib.types.package;
|
|
||||||
default = with pkgs; [
|
|
||||||
sshfs
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
environment.systemPackages = lib.mkIf config.nixowos.allowAddingPackages cfg.extraPackages;
|
|
||||||
|
|
||||||
boot.loader.grub = lib.mkDefault {
|
boot.loader.grub = lib.mkDefault {
|
||||||
# modern installation
|
# modern installation
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue