oizys/modules/common.nix

31 lines
319 B
Nix
Raw Normal View History

2024-01-28 16:40:33 -06:00
{inputs, lib, ...}: {
2024-01-23 11:51:13 -06:00
imports = with inputs.self.nixosModules; [
2024-01-28 13:09:34 -06:00
users
2024-01-23 11:51:13 -06:00
nix
cli
dev
nvim
2024-01-23 16:29:47 -06:00
vpn
2024-01-23 11:51:13 -06:00
2024-01-28 16:40:33 -06:00
# gui
fonts
lock
qtile
hyprland
gui
vscode
2024-01-23 11:51:13 -06:00
# langs
python
2024-01-23 15:36:52 -06:00
misc
node
tex
nim
2024-01-23 11:51:13 -06:00
];
2024-01-28 16:40:33 -06:00
options.desktop.enable = lib.mkEnableOption "is desktop";
2024-01-23 11:51:13 -06:00
}
2024-01-28 16:40:33 -06:00