mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
21 lines
476 B
Nix
21 lines
476 B
Nix
|
{ config, lib, ... }:
|
||
|
with lib.hm.gvariant;
|
||
|
{
|
||
|
imports = [
|
||
|
../../cli/signal.nix
|
||
|
../../desktop/alacritty.nix
|
||
|
../../desktop/dconf-editor.nix
|
||
|
../../desktop/jetbrains-toolbox.nix
|
||
|
../../desktop/meld.nix
|
||
|
../../desktop/protonmail-bridge.nix
|
||
|
../../desktop/sublime-merge.nix
|
||
|
../../desktop/sublime.nix
|
||
|
../../services/keybase.nix
|
||
|
];
|
||
|
|
||
|
# Authrorize X11 access in Distrobox
|
||
|
home.file.".distroboxrc".text = ''
|
||
|
xhost +si:localuser:$USER
|
||
|
'';
|
||
|
}
|