begin server
This commit is contained in:
parent
b3a869e5c8
commit
1ff68fa7ef
1 changed files with 35 additions and 0 deletions
35
systems/NOserver.nix
Normal file
35
systems/NOserver.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
bat
|
||||
bottom
|
||||
cifs-utils
|
||||
git
|
||||
unstable.helix
|
||||
ouch
|
||||
ripgrep
|
||||
skim
|
||||
tree
|
||||
wget
|
||||
];
|
||||
|
||||
programs.partition-manager.enable = false;
|
||||
services.flatpak.enable = false;
|
||||
services.printing.enable = false;
|
||||
hardware.bluetooth.enable = false;
|
||||
services.xserver.enable = false;
|
||||
services.xserver.displayManager.sddm.enable = false;
|
||||
services.xserver.desktopManager.plasma5.enable = false;
|
||||
services.pipewire.enable = false;
|
||||
|
||||
environment.variables = {
|
||||
EDITOR = "hx";
|
||||
VISUAL = "hx";
|
||||
SKIM_DEFAULT_COMMAND = "rg --files";
|
||||
};
|
||||
|
||||
environment.sessionVariables = {
|
||||
EDITOR = "hx";
|
||||
VISUAL = "hx";
|
||||
SKIM_DEFAULT_COMMAND = "rg --files";
|
||||
};
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue