tvl-depot/users/grfn/system/home/modules/desktop.nix
Griffin Smith 631c161a15 fix(grfn/system): Drop ntfy
This always fails when running due to mismatched glibc versions, which
like... isn't nix supposed to solve thaat? I don't have the energy to
debug, this isn't important

Change-Id: I54fb91a0b8ee46b19af4f4b987e5c17d1cf6984f
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7570
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
2022-12-12 15:28:34 +00:00

25 lines
383 B
Nix

{ 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"
];
};
}