mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
11 lines
275 B
Nix
11 lines
275 B
Nix
{ config, ... }: {
|
|
|
|
imports = [ ./user.nix ./timezone.nix ./doas.nix ];
|
|
|
|
# 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";
|
|
|
|
}
|