initial commit
This commit is contained in:
commit
4fddfe8724
3 changed files with 214 additions and 0 deletions
17
package.nix
Normal file
17
package.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
micro
|
||||
git
|
||||
cloudflared
|
||||
cloudflare-warp
|
||||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
# wget
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue