mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
33 lines
554 B
Nix
33 lines
554 B
Nix
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
||
|
#
|
||
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||
|
{
|
||
|
system = "x86_64-linux";
|
||
|
name = "mark";
|
||
|
module = {
|
||
|
pkgs,
|
||
|
config,
|
||
|
roots,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
(roots.nixos + "/modules")
|
||
|
];
|
||
|
|
||
|
magic_rb = {
|
||
|
hardware.mark = true;
|
||
|
};
|
||
|
time.timeZone = "Europe/Bratislava";
|
||
|
system.stateVersion = "20.09";
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gnupg
|
||
|
pinentry
|
||
|
openssl
|
||
|
paperkey
|
||
|
monkeysphere
|
||
|
ssss
|
||
|
];
|
||
|
};
|
||
|
}
|