diff --git a/README.md b/README.md index c97668d..75af8f6 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ -# Simplify +I'm going all in on [Nix](https://nixos.org/) & [home-manager](https://github.com/rycee/home-manager). Wish me luck. -I'm going all in on home-manager. Wish me luck. +### Files + +- **home-cli**: terminal-only +- **home-gui**: cross-platform gui +- **home-mail**: eamil, contacts & calendar +- **home-mac**: Mac-only +- **home-linux**: Linux-only + +### Systems + +- **Samsung S9+**: Android & [Samsung Dex](https://www.samsung.com/us/explore/dex/) & [nix-on-droid](https://github.com/t184256/nix-on-droid) +- **Raspberry Pi 4**: NixOS +- **[Vultr](https://www.vultr.com/) VPS ([dustinswan.com](http://dustinswan.com))**: NixOS +- **Apple Macbook Pro (work laptop)**: MacOS & Nix \ No newline at end of file diff --git a/home-cli.nix b/home-cli.nix index 20bf3e8..3dcffc9 100644 --- a/home-cli.nix +++ b/home-cli.nix @@ -114,7 +114,7 @@ userName = "Dustin Swan"; userEmail = "dustin@dustinswan.com"; signing = { - signByDefault = true; + # signByDefault = true; key = "AD11750151C10881970BD943AB49BD6B2B3A6377"; }; aliases = { diff --git a/home-gui.nix b/home-gui.nix index 5072284..fa00f5a 100644 --- a/home-gui.nix +++ b/home-gui.nix @@ -1,4 +1,8 @@ +{ pkgs, ... }: + { + home.packages = with pkgs; [ iosevka-bin ]; # syncthing ]; + programs.alacritty = { enable = true; settings = { diff --git a/home-mac.nix b/home-mac.nix index 8958ee0..0a94e86 100644 --- a/home-mac.nix +++ b/home-mac.nix @@ -1,7 +1,7 @@ { pkgs, lib, ... }: { - home.packages = with pkgs; [ pinentry_mac terminal-notifier syncthing ]; + home.packages = with pkgs; [ pinentry_mac terminal-notifier ]; # syncthing ]; home.file.gpg-agent = { target = ".gnupg/gpg-agent.conf"; @@ -15,5 +15,5 @@ programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh"; # programs.fish.interactiveShellInit = "source ~/.nix-profile/etc/profile.d/nix.sh"; - imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ]; + imports = [ ./home-cli.nix ./home-gui.nix ]; # ./home-mail.nix ]; }