mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
30 lines
550 B
Nix
30 lines
550 B
Nix
inputs: {
|
|
system = "x86_64-linux";
|
|
hostname = "mark";
|
|
check = false;
|
|
|
|
hm."main" = import ../home-manager/profiles/mark.nix;
|
|
|
|
modules = [
|
|
../nixos/hardware/mark.nix
|
|
../nixos/users/main.nix
|
|
] ++ [
|
|
({ custom, nixpkgs, ... }: _: {
|
|
time.timeZone = "Europe/Bratislava";
|
|
system.stateVersion = "20.09";
|
|
|
|
environment.systemPackages = with nixpkgs; [
|
|
gnupg
|
|
pinentry
|
|
openssl
|
|
paperkey
|
|
monkeysphere
|
|
] ++ [
|
|
custom.sss-cli
|
|
];
|
|
})
|
|
];
|
|
|
|
compatModules = [];
|
|
}
|