Skip to content

Commit

Permalink
remove/hide unused options
Browse files Browse the repository at this point in the history
  • Loading branch information
loganlinn committed Sep 12, 2024
1 parent 369eafc commit 8b9f98e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ in {
email = mkOpt (nullOr str) "[email protected]";
homepage = mkOpt str "https://loganlinn.com";

# homeDirectory = mkOpt str "/home/${cfg.user.name}";
# gitDirectory = mkOpt str "${cfg.homeDirectory}/src";
# dotfilesDirectory = mkOpt str "${cfg.homeDirectory}/.dotfiles";
# dotfilesRepository = "https://github.com/loganlinn/dotfiles.git";

user.name = mkOpt str "logan";
user.signingkey = mkOpt str "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGpyxX1xNYCJHLpTQAEorumej3kyNWlknnhQ/QqkhdN";
user.shell = mkOpt (either str package) pkgs.zsh;
Expand All @@ -30,9 +35,6 @@ in {

publicKeys = mkOpt (attrsOf str) { };

# TODO make resemble pkgs.stdenv's isLinux, isDarwin, isx86_32, etc
hints.isWSL = mkOpt bool (builtins.pathExists /usr/lib/wsl/lib);

fonts = mkOpt (attrsOf fontType) {
serif = {
package = pkgs.dejavu_fonts;
Expand Down

0 comments on commit 8b9f98e

Please sign in to comment.