2021-06-01 08:55:02 +00:00
|
|
|
|
{
|
2023-01-28 21:27:52 +00:00
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
2023-09-12 20:07:05 +00:00
|
|
|
|
lib,
|
2023-01-28 21:27:52 +00:00
|
|
|
|
...
|
2023-09-12 20:07:05 +00:00
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
|
in {
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
|
|
|
|
|
|
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
|
|
|
rocm-opencl-icd
|
|
|
|
|
rocm-opencl-runtime
|
2023-01-28 21:27:52 +00:00
|
|
|
|
];
|
2021-06-01 08:55:02 +00:00
|
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2023-10-07 14:45:42 +00:00
|
|
|
|
boot.plymouth.enable = true;
|
2021-06-01 08:55:02 +00:00
|
|
|
|
|
2023-10-07 14:45:42 +00:00
|
|
|
|
pub-solar.core.hibernation.enable = true;
|
2023-09-12 20:07:05 +00:00
|
|
|
|
pub-solar.core.hibernation.resumeDevice = "/dev/dm-0";
|
|
|
|
|
pub-solar.core.hibernation.resumeOffset = 115075072;
|
|
|
|
|
|
2023-10-07 14:45:42 +00:00
|
|
|
|
pub-solar.terminal-life.full = true;
|
2023-09-12 20:07:05 +00:00
|
|
|
|
|
2023-10-03 12:55:54 +00:00
|
|
|
|
networking.hostName = "chocolatebar";
|
2023-09-12 20:07:05 +00:00
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
drone-docker-runner
|
|
|
|
|
stdenv.cc.cc.lib
|
|
|
|
|
pkgs.hplip
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
|
SUBSYSTEMS=="usb", ATTRS{idVendor}=="04f9", ATTRS{idProduct}=="209e", ATTRS{serial}=="000W0H924252", MODE="0664", GROUP="lp", SYMLINK+="usb/lp0"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
home-manager.users."${psCfg.user.name}" = {
|
2023-10-07 14:45:42 +00:00
|
|
|
|
xdg.configFile = {
|
2023-09-12 20:07:05 +00:00
|
|
|
|
"sway/config.d/10-autostart.conf".source = ./.config/sway/config.d/autostart.conf;
|
|
|
|
|
"sway/config.d/10-input-defaults.conf".source = ./.config/sway/config.d/input-defaults.conf;
|
|
|
|
|
"sway/config.d/10-screens.conf".source = ./.config/sway/config.d/screens.conf;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
|
NIX_CC = "${pkgs.stdenv.cc}";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
lmms
|
|
|
|
|
audacity
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
musnix = {
|
|
|
|
|
enable = true;
|
|
|
|
|
kernel.realtime = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# For OpenProject development with https
|
|
|
|
|
security.pki.certificates = [
|
|
|
|
|
(builtins.readFile ./step-roots.pem)
|
|
|
|
|
];
|
|
|
|
|
|
2021-06-01 08:55:02 +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. It‘s 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).
|
2021-09-04 13:56:44 +00:00
|
|
|
|
system.stateVersion = "20.09"; # Did you read the comment?
|
2021-06-01 08:55:02 +00:00
|
|
|
|
}
|