re-organize nix configs

nvim update
This commit is contained in:
Benjamin Palko 2024-07-13 23:33:49 -04:00
parent eb3fb4f88e
commit d277850804
13 changed files with 240 additions and 210 deletions

13
nixos/home.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, ... }:
{
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}