initial commit

This commit is contained in:
RootHost-Stormwind
2025-01-13 00:46:22 +01:00
commit 3dbfc323e6
9 changed files with 188 additions and 0 deletions

13
packages.nix Normal file
View File

@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
neovim
];
}