about summary refs log blame commit diff
path: root/users/grfn/system/home/modules/desktop.nix
blob: 67123b8082183606d3d23b4e9a77339b291714dc (plain) (tree)




























                                                                      
{ config, lib, pkgs, ... }:

# Things that only work in the presence of a linux desktop environment

{
  imports = [
    ./i3.nix
    ./obs.nix
    ./games.nix
  ];

  home.packages = with pkgs; [
    ntfy
  ];

  programs.zsh.initExtra = ''
    eval "$(${pkgs.ntfy}/bin/ntfy shell-integration)"
  '';

  services.syncthing.tray.enable = true;

  gtk = {
    enable = true;
    gtk3.bookmarks = [
      "file:///home/grfn/code"
      "file:///home/grfn/notes"
    ];
  };
}