home.nix: last cleanup

This commit is contained in:
2026-05-17 12:51:59 +02:00
parent a724d9e98b
commit 07dce06ceb
3 changed files with 14 additions and 10 deletions
+2 -10
View File
@@ -44,15 +44,12 @@
../../modules/home-manager/sbb-tui.nix # cff TUI app ../../modules/home-manager/sbb-tui.nix # cff TUI app
../../modules/home-manager/mullvad.nix # mullvad vpn ../../modules/home-manager/mullvad.nix # mullvad vpn
../../modules/other/desktopEntries.nix # creates .desktop files ../../modules/home-manager/other/desktopEntries.nix # creates .desktop files
../../modules/homer-manager/other/user.nix
]; ];
# Required for Home Manager # Required for Home Manager
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
home.stateVersion = "25.11"; # match your Home Manager release home.stateVersion = "25.11"; # match your Home Manager release
# This value determines the Home Manager release that your configuration is # This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release # compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes. # introduces backwards incompatible changes.
@@ -61,11 +58,6 @@
# want to update the value, then make sure to first check the Home Manager # want to update the value, then make sure to first check the Home Manager
# release notes. # release notes.
home.sessionVariables = {
EDITOR = "neovim";
TERMINAL = "kitty";
};
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }
+12
View File
@@ -0,0 +1,12 @@
{
...
}:
{
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
home.sessionVariables = {
EDITOR = "neovim";
TERMINAL = "kitty";
};
}