631c161a15
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>
25 lines
383 B
Nix
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"
|
|
];
|
|
};
|
|
}
|