mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
34 lines
334 B
Nix
34 lines
334 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = with inputs.self.nixosModules; [
|
|
users
|
|
nix
|
|
cli
|
|
dev
|
|
nvim
|
|
vpn
|
|
gpg
|
|
|
|
# gui
|
|
fonts
|
|
|
|
lock
|
|
qtile
|
|
hyprland
|
|
|
|
gui
|
|
vscode
|
|
|
|
# langs
|
|
python
|
|
misc
|
|
node
|
|
tex
|
|
nim
|
|
];
|
|
|
|
options.desktop.enable = lib.mkEnableOption "is desktop";
|
|
}
|