dotfiles/home/common/default.nix

24 lines
425 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
2024-10-06 23:00:01 +02:00
./nvim
2024-08-02 14:09:42 +02:00
./scripts.nix
./ssh.nix
2024-08-11 23:13:02 +02:00
./tmux.nix
2024-08-02 14:09:42 +02:00
./utils.nix
./vcs.nix
./web.nix
];
2024-09-02 14:43:17 +02:00
options.patagia.desktop.enable = lib.mkEnableOption "Desktop environment";
options.patagia.oled.enable = lib.mkEnableOption "Darker darks on oled screens";
2024-08-02 14:09:42 +02:00
}