modules: move ssh-fido-agent file

This commit is contained in:
Aaron Bieber 2022-10-12 13:58:15 -06:00
parent 9682263bc9
commit e8ea0e7f7b
No known key found for this signature in database
4 changed files with 8 additions and 2 deletions

View File

@ -19,8 +19,9 @@ in {
./configs/zsh.nix ./configs/zsh.nix
./dbuild ./dbuild
./gui ./gui
./pkgs ./modules
./overlays ./overlays
./pkgs
./services ./services
./system/nix-config.nix ./system/nix-config.nix
./system/nix-lockdown.nix ./system/nix-lockdown.nix

5
modules/default.nix Normal file
View File

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
with lib; {
imports = [ ./ssh-fido-agent.nix ];
}

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; { with lib; {
imports = [ ./ssh-fido-agent.nix ./config-manager.nix ]; imports = [ ./config-manager.nix ];
} }