refactor(home-manager modules): moved home-manager module: fonts, monitors, wallpapaer to home/modules/config
This commit is contained in:
parent
3337488840
commit
902f5b5f0f
8 changed files with 9 additions and 8 deletions
12
home/modules/config/wallpaper/default.nix
Normal file
12
home/modules/config/wallpaper/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ lib, ... }:
|
||||
let inherit (lib) types mkOption;
|
||||
in
|
||||
{
|
||||
options.wallpaper = mkOption {
|
||||
type = types.path;
|
||||
default = "";
|
||||
description = ''
|
||||
Wallpaper path
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue