diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-09 14:49:49 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-09 14:49:49 -0800 |
commit | a410a402a5dc5c68208ab8d6610fade60c8639c0 (patch) | |
tree | ad1a15f899ba2ca397c0919f74e2c3634502d6c9 /vars.nix | |
parent | 87ce8be7319fa8612a7edcb9261272688ab099bb (diff) |
use disko instead of rolling my own scripts and fixes
Diffstat (limited to 'vars.nix')
-rw-r--r-- | vars.nix | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/vars.nix b/vars.nix deleted file mode 100644 index d221dd2..0000000 --- a/vars.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ - # set your host name. - hostName = "continuity-dell"; - - # 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"; - - # If you're not forking my website, this value doesn't matter - websiteLocation = "root@nullring.xyz:/usr/share/nginx/ret2pop/"; - - # GPG encrypted password repository (leave as default value and change later if you don't have one) - passwordRepo = "https://git.nullring.xyz/passwords.git"; - - # 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; -} |