dotfiles/home/common/default.nix

23 lines
349 B
Nix
Raw Normal View History

2024-08-02 14:09:42 +02:00
{ lib, ... }:
{
imports = [
./atuin.nix
./broot.nix
./devel.nix
./fish.nix
2024-08-10 23:06:08 +02:00
./ghostty.nix
2024-08-02 14:09:42 +02:00
./gnome.nix
./k8s.nix
./nix.nix
./nvim.nix
./scripts.nix
./ssh.nix
./utils.nix
./vcs.nix
./web.nix
./wezterm.nix
];
options.shelman.desktop.enable = lib.mkEnableOption "Desktop environment";
}