mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
15 lines
314 B
Nix
15 lines
314 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports =
|
|
[ ./auto-upgrade.nix ./doas.nix ./journald.nix ./user.nix ./timezone.nix ];
|
|
|
|
config = lib.mkIf pkgs.stdenv.isLinux {
|
|
|
|
# Pin a state version to prevent warnings
|
|
system.stateVersion =
|
|
config.home-manager.users.${config.user}.home.stateVersion;
|
|
|
|
};
|
|
|
|
}
|