1

Add servenix home config + flake

This commit is contained in:
2023-07-09 11:00:42 +02:00
parent 478ef1cc16
commit ee7094590c
3 changed files with 67 additions and 22 deletions

View File

@ -0,0 +1,47 @@
{
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
];
};
}