19 lines
328 B
Nix
19 lines
328 B
Nix
{ config, lib, pkgs, username,homeDir, ... }:
|
|
|
|
{
|
|
imports = [ ../modules/nitrogen.nix ];
|
|
|
|
home.packages = with pkgs;[
|
|
neovim
|
|
dmenu
|
|
brightnessctl
|
|
rofi
|
|
];
|
|
|
|
home.file = {
|
|
".config/sxhkd".source = dotfiles/config/sxhkd;
|
|
".config/bspwm/host.sh".source = ./bspwm/host.sh;
|
|
};
|
|
programs.firefox.enable = false;
|
|
}
|