aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2024-10-02 17:31:00 +0300
committerZhongheng Liu <z.liu@outlook.com.gr>2024-10-02 17:31:00 +0300
commitd4059b5e9ad8065a917e70c75930e35385cc3499 (patch)
tree31aa67f9e8d26b4d1623859cc52b433f2607d1c9
parent74635a6c6da73114f37fb3dde1021a9cedbc4cb3 (diff)
downloadnixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.tar.gz
nixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.tar.bz2
nixos-configuration-d4059b5e9ad8065a917e70c75930e35385cc3499.zip
chore: cleanup unwanted files
-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";
- };
-}