nixos-config/tsunemori/configuration.nix
2025-01-01 11:35:12 +01:00

50 lines
820 B
Nix

{
inputs,
pkgs,
userSettings,
...
}: {
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
home-manager = {
config = ./home.nix;
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
extraSpecialArgs = {inherit inputs userSettings;};
};
# 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
];
allowUnfree = true;
environment.etcBackupExtension = ".bak";
system.stateVersion = "24.05";
}