Files
nixos-blueprint/hosts/sarien/configuration.nix
unexplrd 85f1c4b917 hosts/dunamis/programs.nix: sync programs
hosts/eldrid/configuration.nix: sync programs
hosts/sarien/configuration.nix: sync programs

Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-04-06 13:54:47 +03:00

44 lines
737 B
Nix

{inputs, ...}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
./boot.nix
./disko.nix
./hardware.nix
./networking.nix
./nix.nix
./power-saving.nix
../dunamis/programs.nix
./services.nix
./sops.nix
./users.nix
];
desktop.niri.enable = true;
locale.ukrainian.enable = true;
module.stylix = {
enable = true;
theme = "helios";
};
opentabletdriver.enable = false;
qmk-vial.enable = true;
security.basic.enable = true;
system.stateVersion = "25.05";
time.timeZone = "Europe/Kyiv";
virtual.libvirt.enable = true;
wireless = {
wifi.enable = true;
bluetooth.enable = true;
bluetooth.enableBlueman = true;
};
}