2024-01-27 22:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
with lib; let
|
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
|
in {
|
2024-01-29 22:02:05 +00:00
|
|
|
|
boot.plymouth.enable = true;
|
|
|
|
|
|
2024-01-27 22:53:36 +00:00
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2024-01-29 22:02:05 +00:00
|
|
|
|
|
|
|
|
|
boot.initrd.preLVMCommands = "udevadm trigger --settle";
|
|
|
|
|
boot.swraid.enable = true;
|
|
|
|
|
boot.swraid.mdadmConf = ''
|
2024-02-02 09:00:51 +00:00
|
|
|
|
DEVICE /dev/nvme0n1p2 /dev/nvme1n1p2
|
2024-01-29 22:02:05 +00:00
|
|
|
|
ARRAY /dev/md/nixos:root metadata=1.2 name=nixos:root UUID=67d1aa81:1b348887:c17a75e8:f2edf2bd
|
2024-03-26 21:07:02 +00:00
|
|
|
|
MAILADDR ${psCfg.user.email}
|
2024-01-29 22:02:05 +00:00
|
|
|
|
'';
|
2024-01-27 22:53:36 +00:00
|
|
|
|
|
2024-01-29 22:02:05 +00:00
|
|
|
|
pub-solar.core.hibernation.enable = true;
|
|
|
|
|
pub-solar.core.hibernation.resumeDevice = "/dev/mapper/vg0-swap";
|
2024-01-27 22:53:36 +00:00
|
|
|
|
|
|
|
|
|
pub-solar.terminal-life.full = true;
|
|
|
|
|
|
|
|
|
|
home-manager.users."${psCfg.user.name}" = {
|
|
|
|
|
xdg.configFile = {
|
|
|
|
|
"sway/config.d/10-screens.conf".source = ./.config/sway/config.d/screens.conf;
|
|
|
|
|
"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-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# 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).
|
2024-02-27 08:41:03 +00:00
|
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
2024-01-27 22:53:36 +00:00
|
|
|
|
}
|