Google Chrome: add back to config

This commit is contained in:
Filippo Berto 2023-05-17 09:47:47 +02:00
parent 14647c6b49
commit 2f2c6b50dd
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
3 changed files with 4 additions and 4 deletions

View file

@ -35,14 +35,14 @@
(import ./rice.nix)
# Flakes packages
(self: _: {
(self: super: {
clipedit = self.callPackage ./custom/clipedit { };
update-background = self.callPackage ./custom/update-background { backgrounds_directory = "$HOME/Immagini/Sfondi/1080+/1440+"; };
lockscreen = self.callPackage ./custom/lockscreen { palette = self.rice.colorPalette; font = self.rice.font.normal; };
sddm-theme-clairvoyance = self.callPackage ./custom/sddm-theme-clairvoyance { wallpaper = ./wallpapers/background.jpg; };
keyboard-switch = self.callPackage ./custom/keyboard-switch { };
sddm-sugar-dark = self.callPackage ./custom/sddm-sugar-dark { };
google-chrome = self.google-chrome.override { commandLineArgs = [ "--password-store=gnome" "--force-dark-mode" ]; };
google-chrome = super.google-chrome.override { commandLineArgs = [ "--password-store=gnome" "--force-dark-mode" ]; };
})
];