mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
Update shared-desktop.nix
This commit is contained in:
@@ -23,6 +23,17 @@
|
||||
programs.dconf.enable = true;
|
||||
|
||||
home-manager.users.thiloho = { pkgs, lib, config, ... }: {
|
||||
dconf.settings = let
|
||||
wallpaper = pkgs.callPackage ./wallpaper.nix {};
|
||||
in {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-uri = "${wallpaper}";
|
||||
picture-uri-dark = "${wallpaper}";
|
||||
};
|
||||
};
|
||||
programs = {
|
||||
gtk = {
|
||||
enable = true;
|
||||
@@ -37,17 +48,6 @@
|
||||
'';
|
||||
};
|
||||
};
|
||||
dconf.settings = let
|
||||
wallpaper = pkgs.callPackage ./wallpaper.nix {};
|
||||
in {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
};
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-uri = "${wallpaper}";
|
||||
picture-uri-dark = "${wallpaper}";
|
||||
};
|
||||
};
|
||||
bash = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
|
||||
Reference in New Issue
Block a user