oizys/modules/common.nix

35 lines
325 B
Nix
Raw Normal View History

2024-01-28 17:39:10 -06:00
{
lib,
self,
2024-01-28 17:39:10 -06:00
...
}: {
imports = with 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-29 10:43:35 -06:00
gpg
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
}