Files
nix-config/homes/ft/ft.nix

16 lines
269 B
Nix

{ config, lib, pkgs, username,homeDir, ... }:
{
imports = [ ../modules/nitrogen.nix ];
home.packages = with pkgs;[
neovim
dmenu
];
home.file = {
".config/sxhkd".source = dotfiles/config/sxhkd;
".config/bspwm/host.sh".source = ./bspwm/host.sh;
};
}