Home

dotnix @21c9bef9ae6bcb0b4050950d8d747c1025d07d97 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / gui / default.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ pkgs, ... }:
{
  imports = [
    ../nogui
    ./firefox.nix
    ./flameshot.nix
    ./ghostty.nix
    ./spotify.nix
    ./wezterm.nix
    ./zed.nix
  ];
  home = {
    packages = with pkgs; [
      # Tools
      cinny-desktop
      delve
      discord
      obsidian

      # LSPs
      marksman
      nodePackages.yaml-language-server
    ];
  };
}