mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
22 lines
439 B
Nix
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
|
|
'';
|
|
|
|
}
|