30 lines
474 B
Nix
30 lines
474 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
|
||
|
];
|
||
|
|
||
|
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"
|
||
|
];
|
||
|
};
|
||
|
}
|