configure dconf
This commit is contained in:
parent
661973185a
commit
fa644090ce
4 changed files with 35 additions and 2 deletions
|
|
@ -62,6 +62,7 @@
|
||||||
riff
|
riff
|
||||||
dissent
|
dissent
|
||||||
loupe
|
loupe
|
||||||
|
spotify-player
|
||||||
|
|
||||||
# overrides
|
# overrides
|
||||||
# (chromium.override {
|
# (chromium.override {
|
||||||
|
|
|
||||||
|
|
@ -140,7 +140,7 @@
|
||||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
['<C-e>'] = cmp.mapping.abort(),
|
['<C-e>'] = cmp.mapping.abort(),
|
||||||
['<C-Tab>'] = cmp.mapping.confirm({ select = true }),
|
['<C-Enter>'] = cmp.mapping.confirm({ select = true }),
|
||||||
})
|
})
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,6 @@
|
||||||
proportion = 0.5;
|
proportion = 0.5;
|
||||||
};
|
};
|
||||||
preset-column-widths = [
|
preset-column-widths = [
|
||||||
{ proportion = 3.0 / 12.0; }
|
|
||||||
{ proportion = 4.0 / 12.0; }
|
{ proportion = 4.0 / 12.0; }
|
||||||
{ proportion = 6.0 / 12.0; }
|
{ proportion = 6.0 / 12.0; }
|
||||||
{ proportion = 8.0 / 12.0; }
|
{ proportion = 8.0 / 12.0; }
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,39 @@
|
||||||
security.pam.services.niri.enableGnomeKeyring = true;
|
security.pam.services.niri.enableGnomeKeyring = true;
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
|
programs.dconf.profiles.user = {
|
||||||
|
databases = [
|
||||||
|
{
|
||||||
|
# breaks user-level indirect config of dconf
|
||||||
|
# lockAll = true;
|
||||||
|
settings = {
|
||||||
|
"org/gnome/desktop/interface" = {
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
|
clock-format = "12h";
|
||||||
|
clock-show-weekday = true;
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/wm/preferences" = {
|
||||||
|
button-layout = ":";
|
||||||
|
action-double-click-titlebar = "'none'";
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/media-handling" = {
|
||||||
|
automount = false;
|
||||||
|
automount-open = false;
|
||||||
|
autorun-never = true;
|
||||||
|
};
|
||||||
|
"org/gnome/settings-daemon/plugins/power" = {
|
||||||
|
sleep-inactive-ac-type = "nothing";
|
||||||
|
};
|
||||||
|
"org/gnome/mutter" = {
|
||||||
|
edge-tiling = true;
|
||||||
|
dynamic-workspaces = true;
|
||||||
|
experimental-features = [ "variable-refresh-rate" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
displayManager = {
|
displayManager = {
|
||||||
gdm.enable = true;
|
gdm.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue