aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/desktop/vars.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-01-16 02:11:26 -0800
committerPreston Pan <ret2pop@gmail.com>2025-01-16 02:11:26 -0800
commit1a3486d77574c06b395ab6cda41084f5ed24a3f4 (patch)
tree69d1051bd14a0c3cb374f84a8c06cb655eba509b /nix/systems/desktop/vars.nix
parent2dff9d2b61244fed49136028d0e0f6ae3ae759cf (diff)
modularized nix configuration; builds correctly
Diffstat (limited to 'nix/systems/desktop/vars.nix')
-rw-r--r--nix/systems/desktop/vars.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/nix/systems/desktop/vars.nix b/nix/systems/desktop/vars.nix
deleted file mode 100644
index eb0b305..0000000
--- a/nix/systems/desktop/vars.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-# Change the following variables
-{
- # set your host name.
- hostName = "continuity";
-
- # username used for unix username as well as msmtp configuration name.
- userName = "preston";
-
- # your full name
- fullName = "Preston Pan";
-
- # Create a new gpg key for this system or import your keys from another system
- gpgKey = "AEC273BF75B6F54D81343A1AC1FE6CED393AE6C1";
-
- # Used for referencing the remote host in config. This mostly shouldn't matter if you are not
- # using my website.
- remoteHost = "nullring.xyz";
-
- # email used for `From` and also as your login email.
- email = "ret2pop@gmail.com";
-
- # IMAPS server. Must be encrypted.
- imapsServer = "imap.gmail.com";
-
- # SMTPS server. Must be encrypted.
- smtpsServer = "smtp.gmail.com";
-
- # Change to your timezone
- timeZone = "America/Vancouver";
-
- # After rebooting, use the command `hyprctl monitors` in order to check which monitor
- # you are using. This is so that waybar knows which monitors to appear in.
- monitors = [
- "HDMI-A-1"
- "eDP-1"
- "DP-2"
- "DP-3"
- "LVDS-1"
- ];
-
- # enable video drivers based on your system.
- # Example:
- # videoDrivers = [
- # "nvidia"
- # "amdgpu"
- # ]
- videoDrivers = [
- ];
-
- # use false if this is your first install of continuity.
- # See https://github.com/nix-community/lanzaboote/blob/master/docs/QUICK_START.md
- # for more information.
- secureBoot = false;
-}