nixos-config/homes/common/default.nix
Ingolf Wagner 3afd6e851e
Some checks failed
Build all NixOS Configurations / nix build (push) Failing after 5m47s
📦 oh-my-posh -> starship.rs
2024-10-30 15:45:40 +09:00

13 lines
237 B
Nix

{ lib, ... }:
{
imports = [
./editor.nix
./network.nix
#./oh-my-posh
./starship-rs
./packages.nix
./terminal.nix
./zfs.nix
];
options.gui.enable = lib.mkEnableOption "should GUI packages be anabled?";
}