dotfiles/nixos/systems/mark.nix

25 lines
438 B
Nix
Raw Normal View History

inputs: {
system = "x86_64-linux";
hostname = "mark";
check = false;
hm."main" = import ../hm-profiles/mark.nix;
modules = [
../hardware/mark.nix
../users/main.nix
] ++ [
({ custom, nixpkgs, ... }: _: {
time.timeZone = "Europe/Bratislava";
system.stateVersion = "20.09";
environment.systemPackages = [
nixpkgs.gnupg
custom.sss-cli
];
})
];
compatModules = [];
}