dotfiles/nix/systems/mark.nix
Magic_RB 87fe56b9ab
Remove sss-cli and replace with ssss
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:25:06 +02:00

35 lines
703 B
Nix

inputs: {
system = "x86_64-linux";
# hm."main" = import ../home-manager/profiles/mark.nix;
modules = [
../hardware/default.nix # manual
../nixos-modules/pin-nixpkgs.nix # manual
../nixos-modules/main.nix # auto
] ++ [
({ pkgs, config, ... }: {
magic_rb = {
pins = inputs;
config = {
allowUnfree = true;
};
overlays = inputs.self.overlays;
hardware.mark = true;
};
time.timeZone = "Europe/Bratislava";
system.stateVersion = "20.09";
environment.systemPackages = with pkgs; [
gnupg
pinentry
openssl
paperkey
monkeysphere
ssss
];
})
];
}