hosts/morphius: init new device
Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
49
hosts/morphius/configuration.nix
Normal file
49
hosts/morphius/configuration.nix
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user