dotfiles/nixos/systems/mark.nix

30 lines
528 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";
2021-02-24 12:32:22 +01:00
environment.systemPackages = with nixpkgs; [
gnupg
pinentry
openssl
paperkey
monkeysphere
] ++ [
custom.sss-cli
];
})
];
compatModules = [];
}