dotfiles/modules/system/default.nix

11 lines
275 B
Nix
Raw Normal View History

{ config, ... }: {
2022-04-30 12:32:00 -04:00
imports = [ ./user.nix ./timezone.nix ./doas.nix ];
2022-06-19 23:44:29 -04: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-19 23:44:29 -04:00
2022-04-30 12:32:00 -04:00
}