chore: cleanup unwanted files

This commit is contained in:
Zhongheng Liu 2024-10-02 17:31:00 +03:00
commit d4059b5e9a
No known key found for this signature in database

View file

@ -1,20 +0,0 @@
{
pkgs,
config,
lib,
...
}: {
options = with lib;
with types; {
myWallPaperPathString = mkOption {type = str;};
myUserName = mkOption {type = str;};
myDisplayName = mkOption {type = str;};
myEmail = mkOption {type = str;};
};
config = rec {
myUserName = "stvnliu";
myWallPaperPathString = "/home/${config.myUserName}/wallpaper.png";
myDisplayName = "Zhongheng Liu";
myEmail = "z.liu@outlook.com.gr";
};
}