Merge branch 'master' of git.dustinswan.com:dustinswan/dotfiles
This commit is contained in:
commit
17492ef6c8
4 changed files with 22 additions and 5 deletions
17
README.md
17
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
|
||||||
|
|
@ -114,7 +114,7 @@
|
||||||
userName = "Dustin Swan";
|
userName = "Dustin Swan";
|
||||||
userEmail = "dustin@dustinswan.com";
|
userEmail = "dustin@dustinswan.com";
|
||||||
signing = {
|
signing = {
|
||||||
signByDefault = true;
|
# signByDefault = true;
|
||||||
key = "AD11750151C10881970BD943AB49BD6B2B3A6377";
|
key = "AD11750151C10881970BD943AB49BD6B2B3A6377";
|
||||||
};
|
};
|
||||||
aliases = {
|
aliases = {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
home.packages = with pkgs; [ iosevka-bin ]; # syncthing ];
|
||||||
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [ pinentry_mac terminal-notifier syncthing ];
|
home.packages = with pkgs; [ pinentry_mac terminal-notifier ]; # syncthing ];
|
||||||
|
|
||||||
home.file.gpg-agent = {
|
home.file.gpg-agent = {
|
||||||
target = ".gnupg/gpg-agent.conf";
|
target = ".gnupg/gpg-agent.conf";
|
||||||
|
|
@ -15,5 +15,5 @@
|
||||||
programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh";
|
programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh";
|
||||||
# programs.fish.interactiveShellInit = "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…
Add table
Add a link
Reference in a new issue