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:
@@ -20,8 +20,34 @@
|
|||||||
gnome.core-utilities.enable = false;
|
gnome.core-utilities.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
home-manager.users.thiloho = { pkgs, lib, config, ... }: {
|
home-manager.users.thiloho = { pkgs, lib, config, ... }: {
|
||||||
programs = {
|
programs = {
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
gtk3.extraConfig = {
|
||||||
|
Settings = ''
|
||||||
|
gtk-application-prefer-dark-theme=1
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
gtk4.extraConfig = {
|
||||||
|
Settings = ''
|
||||||
|
gtk-application-prefer-dark-theme=1
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
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 = {
|
bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|||||||
Reference in New Issue
Block a user