os/hosts/ryzensun/ryzensun.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
2.1 KiB
Nix
Raw Normal View History

2022-11-20 22:14:21 +00:00
{
config,
pkgs,
lib,
self,
...
}:
with lib; let
2021-06-22 00:47:43 +00:00
psCfg = config.pub-solar;
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
2022-11-20 22:14:21 +00:00
in {
2021-06-22 00:47:43 +00:00
imports = [
./hardware-configuration.nix
];
config = {
2021-10-24 23:43:19 +00:00
age.secrets.environment-secrets = {
file = "${self}/secrets/environment-secrets.age";
mode = "700";
owner = "teutat3s";
};
age.secrets.docker-ci-runner-secrets = {
file = "${self}/secrets/docker-ci-runner-secrets.age";
mode = "700";
owner = "999";
};
2021-10-24 23:43:19 +00:00
2021-06-22 00:47:43 +00:00
pub-solar.nextcloud.enable = mkForce false;
pub-solar.docker.enable = true;
2021-06-22 00:47:43 +00:00
pub-solar.virtualisation.enable = true;
pub-solar.docker-ci-runner = {
enable = true;
runnerEnvironment = {
DRONE_RUNNER_CAPACITY = "1";
DRONE_RUNNER_LABELS = "hosttype:baremetal";
};
runnerVarsFile = config.age.secrets.docker-ci-runner-secrets.path;
};
2021-06-22 00:47:43 +00:00
2022-11-20 22:14:21 +00:00
pub-solar.audio.mopidy.enable = mkForce false;
networking = import ./networking.nix;
# Increase console font size for HiDPI display
console = {
earlySetup = true;
font = lib.mkForce "ter-i32b";
packages = [pkgs.terminus_font];
};
2021-06-22 00:47:43 +00:00
home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
2021-10-24 22:30:11 +00:00
"sway/config.d/10-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf;
2021-06-22 00:47:43 +00:00
"sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.conf;
"sway/config.d/input-defaults.conf".source = ./.config/sway/config.d/input-defaults.conf;
"sway/config.d/screens.conf".source = ./.config/sway/config.d/screens.conf;
};
2022-07-08 12:13:41 +00:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.05"; # Did you read the comment?
2021-06-22 00:47:43 +00:00
};
}