20 lines
320 B
Nix
20 lines
320 B
Nix
{ pkgs, ... }: {
|
|
|
|
# Włączamy Flakes
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
# paczki systemowe
|
|
environment.systemPackages = with pkgs; [
|
|
file
|
|
tree
|
|
wget
|
|
git
|
|
openssh
|
|
neovim
|
|
keepassxc
|
|
nextcloud-client
|
|
tmux
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|