dotfiles/modules/system/default.nix

11 lines
275 B
Nix
Raw Normal View History

{ config, ... }: {
2022-04-30 16:32:00 +00:00
imports = [ ./user.nix ./timezone.nix ./doas.nix ];
2022-06-20 03:44:29 +00:00
# Pin a state version to prevent warnings
system.stateVersion = "22.11";
home-manager.users.${config.user}.home.stateVersion = "22.11";
home-manager.users.root.home.stateVersion = "22.11";
2022-06-20 03:44:29 +00:00
2022-04-30 16:32:00 +00:00
}