From d4059b5e9ad8065a917e70c75930e35385cc3499 Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Wed, 2 Oct 2024 17:31:00 +0300 Subject: [PATCH] chore: cleanup unwanted files --- home-manager/stvnliu/variables.nix | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 home-manager/stvnliu/variables.nix 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"; - }; -}