nix-conf/system/configuration.nix
2024-10-28 02:45:23 -05:00

45 lines
813 B
Nix

{
config,
pkgs,
lib,
flake-programs-sqlite,
...
}: {
nix.settings = {
experimental-features = ["nix-command" "flakes"];
use-xdg-base-directories = true;
};
environment.pathsToLink = ["/libexec"];
environment.localBinInPath = true;
boot.tmp.useTmpfs = true;
networking.networkmanager.enable = true;
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"];
};
programs.command-not-found.dbPath = flake-programs-sqlite.packages.${pkgs.system}.programs-sqlite;
programs.ssh.enableAskPassword = false;
system.stateVersion = "24.05";
}