diff options
Diffstat (limited to '')
| -rw-r--r-- | common-linux.nix | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/common-linux.nix b/common-linux.nix index 9b7884e..945fa0f 100644 --- a/common-linux.nix +++ b/common-linux.nix @@ -2,10 +2,12 @@ config, pkgs, inputs, + username, ... }: { imports = [ ./bash.nix + ./zsh-linux.nix ./irc.nix ]; @@ -48,13 +50,23 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ + ffmpeg + wget - nixfmt + curl + jq + + lazygit fastfetch pamixer + btop + tealdeer + + nixfmt gcc alejandra gnumake + nh nix-output-monitor ]; @@ -84,7 +96,7 @@ config = { user = { name = "Skullheadx"; - email = "admonty1@protonmail.com"; + email = "andrew@montgomery.systems"; }; pull.rebase = true; url = { @@ -99,6 +111,11 @@ # programs here, NOT in environment.systemPackages ]; + environment.variables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + }; + environment.sessionVariables = { }; |
