stuff
This commit is contained in:
parent
e38092ec4e
commit
d6007cd0cd
5 changed files with 53 additions and 34 deletions
|
@ -1,9 +1,14 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{ pkgs, lib, inputs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
picture-uri = if builtins.hasAttr "wallpaper" inputs.secrets.assets
|
||||
then inputs.exrets.assets.wallpaper
|
||||
else ../../../../../assets/wallpaper.jpg;
|
||||
in{
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/background".picture-uri = builtins.toString ../../../../../assets/wallpaper.png;
|
||||
"org/gnome/desktop/screensaver".picture-uri = builtins.toString ../../../../../assets/wallpaper.png;
|
||||
"org/gnome/desktop/background".picture-uri = picture-uri;
|
||||
"org/gnome/desktop/background".picture-uri-dark = picture-uri;
|
||||
"org/gnome/desktop/screensaver".picture-uri = picture-uri;
|
||||
"org/gnome/desktop/interface" = {
|
||||
accent-color = "slate";
|
||||
color-scheme = "prefer-dark";
|
||||
|
@ -31,6 +36,22 @@
|
|||
"org.gnome.Nautilus.desktop"
|
||||
];
|
||||
};
|
||||
"org/gnome/shell/extensions/just-perfection" = {
|
||||
calendar = false;
|
||||
events-button = false;
|
||||
quick-settings-dark-mode = false;
|
||||
world-clock = false;
|
||||
};
|
||||
"org/gnome/shell/extensions/quick-settings-tweaks" = {
|
||||
notifications-enabled = false;
|
||||
};
|
||||
"org/gnome/desktop/wm/preferences" = {
|
||||
audible-bell = false;
|
||||
num-workspaces = 9;
|
||||
};
|
||||
"org/gnome/mutter" = {
|
||||
dynamic-workspaces = false;
|
||||
};
|
||||
"org/gnome/shell/keybindings" = {
|
||||
switch-to-application-1 = [];
|
||||
switch-to-application-2 = [];
|
||||
|
@ -42,13 +63,6 @@
|
|||
switch-to-application-8 = [];
|
||||
switch-to-application-9 = [];
|
||||
};
|
||||
"org/gnome/desktop/wm/preferences" = {
|
||||
audible-bell = false;
|
||||
num-workspaces = 9;
|
||||
};
|
||||
"org/gnome/mutter" = {
|
||||
dynamic-workspaces = false;
|
||||
};
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
switch-to-workspace-1 = ["<Super>1"];
|
||||
switch-to-workspace-2 = ["<Super>2"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue