!qol(restructure): heavy restructure
This commit is contained in:
4
modules/theme/default.nix
Normal file
4
modules/theme/default.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
_: {
|
||||
home = ./home.nix;
|
||||
# nixos: ./nixos.nix;
|
||||
}
|
||||
21
modules/theme/home.nix
Normal file
21
modules/theme/home.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.modules.theme;
|
||||
in
|
||||
{
|
||||
options.modules.theme = {
|
||||
enable = lib.mkEnableOption "theme";
|
||||
};
|
||||
config.services.dunst = lib.mkIf cfg.enable {
|
||||
settings = {
|
||||
global = {
|
||||
font = "Noto Nerd Font 8";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user