.dotfiles/profiles/mysticant/configuration.nix
2024-07-20 00:21:55 +02:00

19 lines
424 B
Nix

{ pkgs, ... }: {
environment.packages = with pkgs; [
vim
git
man
gnupg
];
# Backup etc files instead of failing to activate generation if a file already exists in /etc
environment.etcBackupExtension = ".bak";
# Read the changelog before changing this value
system.stateVersion = "23.05";
# Set up nix for flakes
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}