mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
504c17a535
Signed-off-by: Magic_RB <magic_rb@redalder.org>
87 lines
1.6 KiB
Nix
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";
|
|
};
|
|
}
|
|
|