tvl-depot/users/grfn/system/home/modules/desktop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
383 B
Nix
Raw Normal View History

{ 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
];
services.syncthing.tray.enable = true;
gtk = {
enable = true;
gtk3.bookmarks = [
"file:///home/grfn/code"
"file:///home/grfn/notes"
];
};
}