nix-conf/system/common/configuration.nix
2024-10-24 02:01:46 -05:00

40 lines
768 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;
system.stateVersion = "24.05";
}