nixos conf init
This commit is contained in:
commit
75254f922d
5 changed files with 287 additions and 0 deletions
24
home.nix
Normal file
24
home.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue