modularise config
This commit is contained in:
parent
ae44502f36
commit
79bba316c2
28 changed files with 407 additions and 432 deletions
13
home/common/chromium.nix
Normal file
13
home/common/chromium.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
chromium = super.chromium.override {
|
||||
commandLineArgs = "--force-dark-mode";
|
||||
};
|
||||
})
|
||||
];
|
||||
|
||||
programs.chromium.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue