Merge branch 'master' of git.dustinswan.com:dustinswan/dotfiles

master
Dustin Swan 3 years ago
commit 17492ef6c8
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -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

@ -114,7 +114,7 @@
userName = "Dustin Swan";
userEmail = "dustin@dustinswan.com";
signing = {
signByDefault = true;
# signByDefault = true;
key = "AD11750151C10881970BD943AB49BD6B2B3A6377";
};
aliases = {

@ -1,4 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ iosevka-bin ]; # syncthing ];
programs.alacritty = {
enable = true;
settings = {

@ -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 ];
}

Loading…
Cancel
Save