initial comit

This commit is contained in:
2025-07-10 14:28:15 +02:00
commit 2bb359c70c
19 changed files with 917 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home-manager.users.alex= {
imports = [
../../home-manager/common.nix
../../home-manager/sway.nix
../../home-manager/rofi.nix
../../home-manager/waybar.nix
];
home.packages = with pkgs; [
neovim
];
};
}