Nixfiles/nixos/pkg.nix
2021-06-22 16:37:54 +02:00

47 lines
820 B
Nix

{ config, pkgs, ... }:
{
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
gtkUsePortal = true;
};
};
/* nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
}; */
nixpkgs.config = {
allowUnfree = true;
};
nixpkgs.overlays = [
(import (builtins.fetchTarball {
url = https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz;
}))
];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget
neovim-nightly
git
gnumake
ripgrep
flashrom
gcc
libappindicator
file
jq
];
}