Compare commits
2 commits
4b5c27d75d
...
0c26f48a9a
Author | SHA1 | Date | |
---|---|---|---|
0c26f48a9a | |||
1d1f90e25a |
3 changed files with 20 additions and 0 deletions
11
config/discord/settings.json
Normal file
11
config/discord/settings.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"SKIP_HOST_UPDATE": true,
|
||||||
|
"IS_MAXIMIZED": false,
|
||||||
|
"IS_MINIMIZED": false,
|
||||||
|
"WINDOW_BOUNDS": {
|
||||||
|
"x": 7,
|
||||||
|
"y": 57,
|
||||||
|
"width": 1906,
|
||||||
|
"height": 1136
|
||||||
|
}
|
||||||
|
}
|
|
@ -14,6 +14,8 @@ in
|
||||||
"ags".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/ags";
|
"ags".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/ags";
|
||||||
|
|
||||||
"ripgrep".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/ripgrep";
|
"ripgrep".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/ripgrep";
|
||||||
|
|
||||||
|
"discord/settings.json".source = config.lib.file.mkOutOfStoreSymlink "${configDir}/discord/settings.json";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
dconf.settings = {
|
||||||
|
"org/virt-manager/virt-manager/connections" = {
|
||||||
|
autoconnect = ["qemu:///system"];
|
||||||
|
uris = ["qemu:///system"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
||||||
btop.enable = true;
|
btop.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue