nixos-config/tsunemori/configuration.nix
2025-01-01 10:46:39 +01:00

42 lines
710 B
Nix

{pkgs, ...}: {
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
home-manager = {
config = ./home.nix;
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
};
# Simply install just the packages
environment.packages = with pkgs; [
# User-facing stuff that you really really want to have
neovim
git
neofetch
# Some common stuff that people expect to have
#procps
#killall
#diffutils
#findutils
#utillinux
#tzdata
#hostname
#man
#gnugrep
#gnupg
#gnused
#gnutar
#bzip2
#gzip
#xz
#zip
#unzip
];
environment.etcBackupExtension = ".bak";
system.stateVersion = "24.05";
}