hosts/morphius: init new device

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-05-27 16:47:01 +03:00
parent 5dfa9d62c4
commit 7139cfb640
10 changed files with 216 additions and 4 deletions

View File

@ -0,0 +1,49 @@
{
inputs,
pkgs,
...
}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
self.nixosModules.config
./disko
./hardware
./misc
];
networking = {
networkmanager.enable = true;
# hostId = "31150fae";
hostName = "morphius";
};
boot.loader.systemd-boot.enable = true;
environment.memoryAllocator.provider = "mimalloc";
system.stateVersion = "25.11";
time.timeZone = "Europe/Kyiv";
desktop.plasma.enable = true;
# services.greetd.settings.initial_session = {
# user = "user";
# command = "${pkgs.niri}/bin/niri-session";
# };
module = {
config = {
# laptop.homeRowMods = true;
powerSave = true;
useIwd = true;
vaapi = "intel-media-driver";
};
stylix = {
enable = true;
theme = "rose-pine-moon";
};
};
locale.ukrainian.enable = true;
opentabletdriver.enable = false;
qmk-vial.enable = true;
virtual.libvirt.enable = true;
}