19 lines
280 B
Nix
19 lines
280 B
Nix
|
|
{pkgs, ...}: {
|
||
|
|
imports = [
|
||
|
|
../desktop/bspwm.nix
|
||
|
|
../common/browser.nix
|
||
|
|
../common/nvim.nix
|
||
|
|
./dunoz.nix
|
||
|
|
];
|
||
|
|
home = {
|
||
|
|
packages = with pkgs; [
|
||
|
|
fastfetch
|
||
|
|
nerd-fonts.iosevka
|
||
|
|
proton-pass
|
||
|
|
smug
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|
||
|
|
# vim: set ts=2 sw=2 sts=2 et :
|
||
|
|
|