System/nixos/modules/base.nix
2025-02-12 01:37:24 -05:00

29 lines
386 B
Nix

{inputs}: {
config,
lib,
pkgs,
...
}: {
imports = [
inputs.lix-module.nixosModules.default
];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
environment.systemPackages = with pkgs; [
neovim
git
tmux
alejandra
nix-index
curl
wget
];
system.stateVersion = "24.11";
nixpkgs.config.allowUnfree = true;
}