walker be workin now

This commit is contained in:
marty 2025-12-18 09:35:29 +00:00
parent 4cbfffefaa
commit 0db960aec4
6 changed files with 36 additions and 24 deletions

View file

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{ config, pkgs, inputs, ... }:
{
imports = [ ./window_manager ];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "marty";
@ -77,6 +76,9 @@
EDITOR = "codium";
};
imports = [
./window_manager
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}