aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home-manager/stvnliu/variables.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/home-manager/stvnliu/variables.nix b/home-manager/stvnliu/variables.nix
deleted file mode 100644
index 21ba288..0000000
--- a/home-manager/stvnliu/variables.nix
+++ /dev/null
@@ -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";
- };
-}