initial commit

This commit is contained in:
2024-10-16 19:11:15 +02:00
commit 6da0038f5d
39 changed files with 5141 additions and 0 deletions

14
homes/ft/ft.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, lib, pkgs, username,homeDir, ... }:
{
home.packages = with pkgs;[
neovim
dmenu
];
home.file = {
".config/sxhkd".source = dotfiles/config/sxhkd;
".config/nitrogen".source = dotfiles/config/nitrogen;
".config/bspwm/bspwmrc".source = dotfiles/config/bspwm/bspwmrc;
};
}