17 lines
168 B
Nix
17 lines
168 B
Nix
{ pkgs, ... }: {
|
|
|
|
imports = [
|
|
./wm.nix
|
|
./rofi.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
feh
|
|
];
|
|
|
|
xsession = {
|
|
enable = true;
|
|
};
|
|
}
|