add vim and tailscale and shit
This commit is contained in:
parent
6163a8b53f
commit
9797de097a
3 changed files with 24 additions and 1 deletions
|
@ -23,7 +23,8 @@
|
|||
({...}: { system.stateVersion = "23.11"; })
|
||||
./system/cerulea-1/hardware-configuration.nix
|
||||
./system/cerulea-1/networking.nix
|
||||
./system/configuration.nix
|
||||
./system/base.nix
|
||||
./system/software.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
22
flake/system/software.nix
Normal file
22
flake/system/software.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, unstable-pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
tmux
|
||||
] ++ [
|
||||
unstable-pkgs.deno
|
||||
unstable-pkgs.sqlite-interactive
|
||||
unstable-pkgs.httpie
|
||||
];
|
||||
|
||||
programs.vim.defaultEditor = true;
|
||||
environment.variables = {
|
||||
EDITOR = "vim";
|
||||
VISUAL = "vim";
|
||||
SYSTEMD_EDITOR = "vim";
|
||||
};
|
||||
|
||||
services.tailscale.enable = true;
|
||||
|
||||
programs.git.enable = true;
|
||||
programs.nix-ld.enable = true; # for Deno :)
|
||||
}
|
Loading…
Reference in a new issue