nix-conf/system/configuration.nix
2024-10-19 01:35:49 -05:00

41 lines
714 B
Nix

{ config, pkgs, lib, ... }:
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
use-xdg-base-directories = true;
};
environment.pathsToLink = [ "/libexec" ];
environment.localBinInPath = true;
boot.tmp.useTmpfs = true;
networking.hostName = "nixos";
networking.networkmanager.enable = true;
time.timeZone = "America/Chicago";
environment.systemPackages = with pkgs; [
neovim
wget
tree
tmux
git
btop
cryptsetup
man-pages
man-pages-posix
home-manager
];
documentation.dev.enable = true;
xdg.terminal-exec = {
enable = true;
settings.default = [ "Alacritty.desktop" ];
};
system.stateVersion = "24.05";
}