initial commit

This commit is contained in:
Wateir 2025-12-07 20:40:49 +01:00
commit 4fddfe8724
3 changed files with 214 additions and 0 deletions

17
package.nix Normal file
View 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
];
}