- use plasma.nix to set wallpaper & lookAndFeel - use unstable-os channel instead of unstable-pkgs in some more places for slightly more testing/stability - remove duplicate rustdesk from nixos-pulse sysPkgs as its already in home-mods/desktop
17 lines
309 B
Nix
17 lines
309 B
Nix
{ config
|
|
, pkgs
|
|
, inputs
|
|
, ...
|
|
}: {
|
|
# xdg.configFile."easyeffects/output/default.json".source = ./default.json;
|
|
services.easyeffects = {
|
|
enable = true;
|
|
# preset = "default";
|
|
package = pkgs.unstable-os.easyeffects;
|
|
};
|
|
|
|
home.packages = with pkgs.unstable-os; [
|
|
spotify
|
|
ncspot
|
|
];
|
|
}
|