aboutsummaryrefslogtreecommitdiff
path: root/nixos/variables.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/variables.nix')
-rw-r--r--nixos/variables.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/nixos/variables.nix b/nixos/variables.nix
deleted file mode 100644
index fdf47b4..0000000
--- a/nixos/variables.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}: {
- # Type definitions for nix variables used in this configuration
- options = with lib;
- with types; {
- myUserName = mkOption {type = str;};
- myHostName = mkOption {type = str;};
- };
-
- # Default values for this configuration
- config = {
- myUserName = "stvnliu";
- myHostName = "homelab-nix";
- };
-}