Remove default variables

I no longer want these to be true so I can remove them.
This commit is contained in:
Oliver Davies 2025-02-22 19:47:41 +00:00
parent 597a72b4d5
commit 8ad1dcc14b
2 changed files with 3 additions and 10 deletions
nix/lib/shared

View file

@ -1,4 +1,4 @@
{ lib, username, ... }:
{ username, ... }:
{
home.username = "${username}";
@ -21,13 +21,4 @@
home.stateVersion = "22.05";
programs.home-manager.enable = true;
features = lib.mkMerge [
{
cli = {
neovim.enable = lib.mkDefault true;
tmux.enable = lib.mkDefault true;
};
}
];
}