multi host maybe

This commit is contained in:
voidarclabs
2026-01-04 12:08:59 +00:00
parent 70a636c513
commit 0d36888cfa
4 changed files with 128 additions and 28 deletions

43
configuration-laptop.nix Normal file
View File

@@ -0,0 +1,43 @@
{ config, lib, pkgs, inputs, ... }:
{
networking.hostName = "mobile02"; # Define your hostname.
# Opengl and vulkan
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-vaapi-driver
libva-vdpau-driver
];
};
services.displayManager.sddm = {
enable = true;
theme = "catppuccin-mocha-mauve";
package = pkgs.kdePackages.sddm;
};
# Catppuccin sddm theme
(pkgs.catppuccin-sddm.override {
flavor = "mocha";
font = "Fira Mono Nerd Font";
fontSize = "11";
background = null;
})
# Local User
users.users.user01 = {
extraGroups = [ ];
packages = with pkgs; [
# Ricing
inputs.way-edges.packages.${pkgs.system}.way-edges
inputs.chataigne.packages.${pkgs.system}.chataigne
# Terminal
light
# Apps
];
};
}