nixos: backend server
This commit is contained in:
parent
83be5595ba
commit
643ecb1e14
24 changed files with 542 additions and 5 deletions
14
nixos/packages.nix
Normal file
14
nixos/packages.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
btop
|
||||
git
|
||||
neovim
|
||||
];
|
||||
}
|
||||
Reference in a new issue