dotfiles/nixos/systems/deck.nix
Magic_RB 504c17a535
Initial deck support
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-09-17 12:00:01 +02:00

87 lines
1.6 KiB
Nix

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
{
system = "x86_64-linux";
name = "heater";
module = {
roots,
inputs,
pkgs,
secret,
lib,
config,
...
}:
with lib; {
imports = [
# (roots.nixos + "/profiles/workstation.nix")
];
# _module.args.nixinate = {
# host = "10.64.2.129";
# sshUser = "main";
# buildOn = "local";
# substituteOnTarget = true;
# hermetic = false;
# nixOptions = [
# "--override-input secret path://$HOME/dotfiles/secret"
# ];
# };
nixpkgs.config.allowUnfree = true;
home-manager.users."main" = {...}: {
magic_rb = {
# optimisation.march = "znver2";
};
home.stateVersion = "20.09";
};
magic_rb = {
# optimisation.march = "znver2";
grub = {
enable = true;
efi.enable = true;
};
xserver = {
gpu = "nvidia";
};
# erase-my-darlings.zfs = {
# enable = true;
# snapshot = "heater-zpool/local/root@blank";
# };
hardware.deck = true;
gaming.enable = true;
};
# Pinning
nix.registry =
flip mapAttrs inputs
(
n: flake: {inherit flake;}
);
networking = {
hostName = "deck";
useDHCP = false;
firewall.enable = true;
hostId = "3457b231";
firewall = {
allowedTCPPorts = [22 25565];
};
};
# System
system.stateVersion = "22.05";
};
}