Re-organize Nix Modules

- Move all programs into system folder
- Create `default.nix` for each folder to reduce number of imports
  in configuration.nix
- Rename some modules to be more generic and less package
  specific to allow for easy swapping of programs in the future
- Update flake.lock
This commit is contained in:
Sravan Balaji
2024-03-27 16:12:10 -04:00
parent ee2aff1f08
commit 59f88dad0f
41 changed files with 277 additions and 92 deletions

View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
imports = [
./3d-printing.nix
./bootable-media.nix
./file-syncing.nix
./keyboard-configuration.nix
./passwords.nix
];
}