Refactor configuration to be more concise

This commit is contained in:
Marko Korhonen 2024-09-15 22:35:51 +03:00
parent 6a7ed1deaa
commit f39e1965ba
3 changed files with 53 additions and 45 deletions

7
common.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./gpg.nix ];
system.stateVersion = "24.05";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}