.dotfiles/profiles/mysticant/configuration.nix
2024-07-18 23:12:04 +02:00

22 lines
426 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
'';
}