refactor(chrome): move relevant nixos config
This commit is contained in:
parent
6fcd64d31b
commit
ca9471bfb3
9
home/chrome/nixos.nix
Normal file
9
home/chrome/nixos.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs
|
||||||
|
, lib
|
||||||
|
, config
|
||||||
|
, ... }: with lib; let
|
||||||
|
gui = with config.faucet.gui; ( enable && session );
|
||||||
|
in {
|
||||||
|
users.home.persist.directories = mkIf gui [ ".config/google-chrome" ];
|
||||||
|
security.chromiumSuidSandbox.enable = mkIf gui true;
|
||||||
|
}
|
|
@ -16,12 +16,6 @@ in {
|
||||||
# this module passes sway-specific config values
|
# this module passes sway-specific config values
|
||||||
{ passthrough.sway = cfg; }
|
{ passthrough.sway = cfg; }
|
||||||
];
|
];
|
||||||
|
|
||||||
users.home.persist = mkIf gui {
|
|
||||||
directories = [
|
|
||||||
".config/google-chrome"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
users.adminGroups = mkIf gui [ "video" ];
|
users.adminGroups = mkIf gui [ "video" ];
|
||||||
|
|
||||||
# themes and icons
|
# themes and icons
|
||||||
|
@ -45,7 +39,6 @@ in {
|
||||||
|
|
||||||
security = mkIf gui {
|
security = mkIf gui {
|
||||||
polkit.enable = true;
|
polkit.enable = true;
|
||||||
chromiumSuidSandbox.enable = true;
|
|
||||||
pam.services.swaylock = { };
|
pam.services.swaylock = { };
|
||||||
};
|
};
|
||||||
fonts.enableDefaultPackages = mkIf gui true;
|
fonts.enableDefaultPackages = mkIf gui true;
|
||||||
|
|
Loading…
Reference in a new issue