16 lines
251 B
Nix
16 lines
251 B
Nix
let
|
|
lib = (import <nixpkgs> {}).lib;
|
|
|
|
in
|
|
{
|
|
|
|
allowUnfree = true;
|
|
firefox.enablePlasmaBrowserIntegration = true;
|
|
clementine.spotify = false;
|
|
vim =
|
|
{ gui = "gtk3";
|
|
python = true;
|
|
multibyteSupport = true;
|
|
};
|
|
}
|