aboutsummaryrefslogtreecommitdiff
path: root/home-manager/home.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/home.nix')
-rw-r--r--home-manager/home.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/home-manager/home.nix b/home-manager/home.nix
index 5df8918..aec1491 100644
--- a/home-manager/home.nix
+++ b/home-manager/home.nix
@@ -1,8 +1,8 @@
-{ config, pkgs, ... }:
+{ config, pkgs, username, ... }:
{
- home.username = "aargh";
- home.homeDirectory = "/home/aargh";
- home.stateVersion = "24.11";
+ home.username = username;
+ home.homeDirectory = "/home/${username}";
+ home.stateVersion = "25.05";
home.packages = with pkgs; [
devenv
# # Adds the 'hello' command to your environment. It prints a friendly
@@ -41,7 +41,7 @@
# '';
};
home.sessionVariables = {
- # EDITOR = "emacs";
+ EDITOR = "nvim";
};
programs.home-manager.enable = true;
}