15 lines
225 B
Nix
15 lines
225 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./wallpaper.nix
|
|
./programs
|
|
];
|
|
config = {
|
|
services.mpris-proxy.enable = true;
|
|
home.packages = with pkgs; [
|
|
spacer
|
|
devenv
|
|
just
|
|
showmethekey
|
|
];
|
|
};
|
|
}
|