refactor: rename global from faucet
This commit is contained in:
parent
a28c7b9fb3
commit
95dd5cbd6c
31 changed files with 40 additions and 40 deletions
23
global/gui/greetd.nix
Normal file
23
global/gui/greetd.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.global.gui;
|
||||
in mkIf (cfg.enable && cfg.session) {
|
||||
programs.regreet = {
|
||||
enable = true;
|
||||
cageArgs = [ "-s" "-d" "-m" "last" ];
|
||||
settings = {
|
||||
background.path = ../../share/54345906_p0.jpg;
|
||||
background.fit = "Fill";
|
||||
GTK = {
|
||||
application_prefer_dark_theme = true;
|
||||
cursor_theme_name = "Bibata-Modern-Classic";
|
||||
icon_theme_name = "WhiteSur-dark";
|
||||
theme_name = "WhiteSur-Dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.persistence."/nix/persist/fhs".directories = [ "/var/cache/regreet" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue