mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
87fe56b9ab
Signed-off-by: Magic_RB <magic_rb@redalder.org>
35 lines
703 B
Nix
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
|
|
];
|
|
})
|
|
];
|
|
}
|