forgot a few things

This commit is contained in:
Tyler Beckman 2024-12-11 19:50:18 -07:00
parent 8d897f8ec1
commit 7c9307a2cf
Signed by: Ty
GPG key ID: 2813440C772555A4
3 changed files with 28 additions and 0 deletions

View file

@ -5,6 +5,8 @@
./display.nix
./locale.nix
./networking.nix
./nixpkgs.nix
./programs.nix
./users.nix
];
}

View file

@ -0,0 +1,5 @@
{ inputs, ... }:
{
# Allow closed source packages
nixpkgs.config.allowUnfree = true;
}

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
{
# Install system packages
environment.systemPackages = with pkgs; [
# Basic necessities
wget
curl
neovim
home-manager
# VCS
git
jujutsu
];
# Install zsh
programs.zsh.enable = true;
# Disable default command-not-found (it doesn't work with flakes)
programs.command-not-found.enable = false;
programs.nix-index.enable = true;
}