nix-conf/system/configuration.nix

41 lines
714 B
Nix
Raw Normal View History

2024-08-18 12:27:36 -04:00
{ config, pkgs, lib, ... }:
2024-08-16 10:36:55 -04:00
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
use-xdg-base-directories = true;
};
2024-08-23 19:55:31 -04:00
environment.pathsToLink = [ "/libexec" ];
2024-10-04 20:25:55 -04:00
environment.localBinInPath = true;
2024-08-23 19:55:31 -04:00
2024-08-18 12:27:36 -04:00
boot.tmp.useTmpfs = true;
2024-08-16 10:36:55 -04:00
networking.hostName = "nixos";
networking.networkmanager.enable = true;
time.timeZone = "America/Chicago";
environment.systemPackages = with pkgs; [
neovim
wget
tree
tmux
git
btop
cryptsetup
2024-09-02 15:43:30 -04:00
man-pages
man-pages-posix
home-manager
2024-08-16 10:36:55 -04:00
];
2024-09-02 15:43:30 -04:00
documentation.dev.enable = true;
2024-10-04 20:25:55 -04:00
xdg.terminal-exec = {
enable = true;
settings.default = [ "Alacritty.desktop" ];
};
2024-10-11 21:25:02 -04:00
2024-08-16 10:36:55 -04:00
system.stateVersion = "24.05";
}