Skip to content

Commit

Permalink
Merge pull request #24 from entropia/leona/profile-base-apps
Browse files Browse the repository at this point in the history
feat(profile/base): add more default applications, enable new nix cli
  • Loading branch information
xanderio authored Jun 7, 2024
2 parents baa9ac7 + 35eb167 commit 52e290b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion profiles/base/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ inputs, lib, ... }: {
{ inputs, lib, pkgs, ... }: {
imports = [
../../users
./nginx.nix
Expand Down Expand Up @@ -27,8 +27,25 @@
trusted-substituters = [ "https://entropia.cachix.org" ];
substituters = [ "https://entropia.cachix.org" ];
trusted-public-keys = [ "entropia.cachix.org-1:a3vy2scFVr0sQvtp2CPlOlzUKmPfbvs1/9VFsqqI5Sk=" ];
experimental-features = [ "nix-command" "flakes" ];
};

programs.htop.enable = true;
programs.mtr.enable = true;
programs.neovim = {
enable = true;
defaultEditor = true;
vimAlias = true;
viAlias = true;
withRuby = false;
withPython3 = false;
};

environment.systemPackages = with pkgs; [
bind.dnsutils # for dig
tcpdump
];

# connect to node using local user name
deployment.targetUser = lib.mkDefault null;
};
Expand Down

0 comments on commit 52e290b

Please sign in to comment.