mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 08:26:25 +00:00
30 lines
746 B
Nix
30 lines
746 B
Nix
{ config, lib, ... }:
|
|
with lib.hm.gvariant;
|
|
{
|
|
imports = [
|
|
../../desktop/audio-recorder.nix
|
|
../../desktop/celluloid.nix
|
|
../../desktop/dconf-editor.nix
|
|
../../desktop/emote.nix
|
|
../../desktop/gitkraken.nix
|
|
../../desktop/gnome-sound-recorder.nix
|
|
../../desktop/meld.nix
|
|
../../desktop/sublime.nix
|
|
../../desktop/sublime-merge.nix
|
|
../../desktop/rhythmbox.nix
|
|
../../desktop/sakura.nix
|
|
../../desktop/tilix.nix
|
|
];
|
|
|
|
dconf.settings = {
|
|
"org/gnome/rhythmbox/rhythmdb" = {
|
|
locations = [ "file://${config.home.homeDirectory}/Studio/Music" ];
|
|
monitor-library = true;
|
|
};
|
|
};
|
|
|
|
# Authrorize X11 access in Distrobox
|
|
home.file.".distroboxrc".text = ''
|
|
xhost +si:localuser:$USER
|
|
'';
|
|
}
|