nixos/base.nix
2026-03-01 09:27:12 +01:00

21 lines
330 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
unzip
];
nixpkgs.config.allowUnfree = true;
}