System/nixos/modules/base.nix
2025-01-13 14:53:42 -05:00

28 lines
368 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
];
system.stateVersion = "24.11";
nixpkgs.config.allowUnfree = true;
}