nixos conf init

This commit is contained in:
Matt Nish-Lapidus 2024-09-22 01:04:11 -04:00
commit 75254f922d
5 changed files with 287 additions and 0 deletions

24
home.nix Normal file
View file

@ -0,0 +1,24 @@
{ lib, pkgs, ... }:
{
home = {
packages = with pkgs; [
eza
fish
emacs
just
fd
fzf
bat
jq
rg
];
# This needs to actually be set to your username
username = "emenel";
homeDirectory = "/home/emenel";
# You do not need to change this if you're reading this in the future.
# Don't ever change this after the first build. Don't ask questions.
stateVersion = "23.11";
};
}