48 lines
760 B
Nix
48 lines
760 B
Nix
{
|
|
inputs,
|
|
hostname,
|
|
username,
|
|
lib,
|
|
mylib,
|
|
config,
|
|
nixosConfig,
|
|
pkgs,
|
|
...
|
|
}:
|
|
# Here goes the stuff that will only be enabled on the desktop
|
|
rec {
|
|
imports = [
|
|
../../modules
|
|
];
|
|
|
|
config = {
|
|
modules = {
|
|
hyprland = {
|
|
kb-layout = "us";
|
|
kb-variant = "altgr-intl";
|
|
|
|
monitors = {
|
|
"HDMI-A-1" = {
|
|
width = 2560;
|
|
height = 1440;
|
|
rate = 144;
|
|
x = 1920;
|
|
y = 0;
|
|
scale = 1;
|
|
};
|
|
};
|
|
|
|
workspaces = {
|
|
"HDMI-A-1" = [1 2 3 4 5 6 7 8 9 10];
|
|
};
|
|
};
|
|
|
|
waybar.monitor = "HDMI-A-1";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# quartus-prime-lite # Intel FPGA design software
|
|
];
|
|
};
|
|
}
|