diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-02 17:31:00 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-02 17:31:00 +0300 |
commit | d4059b5e9ad8065a917e70c75930e35385cc3499 (patch) | |
tree | 31aa67f9e8d26b4d1623859cc52b433f2607d1c9 | |
parent | 74635a6c6da73114f37fb3dde1021a9cedbc4cb3 (diff) | |
download | nixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.tar.gz nixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.tar.bz2 nixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.zip |
chore: cleanup unwanted files
-rw-r--r-- | home-manager/stvnliu/variables.nix | 20 |
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"; - }; -} |