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