.dotfiles/profiles/mysticant/configuration.nix
2024-05-05 02:29:26 +02:00

22 lines
439 B
Nix

{ config, lib, 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
'';
}