mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
25 lines
438 B
Nix
25 lines
438 B
Nix
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 = [];
|
|
}
|