Sravan Balaji 59f88dad0f 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
2024-03-27 16:12:10 -04:00

12 lines
204 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./default.nix
./lightdm.nix
];
services.xserver.windowManager.dwm.enable = true;
services.xserver.displayManager.defaultSession = "none+dwm";
}