1

General codestyle changes

This commit is contained in:
2024-06-03 20:37:24 +02:00
parent 26ea3f3f00
commit 1df9bf4011
9 changed files with 214 additions and 272 deletions

View File

@ -1,16 +1,5 @@
{
inputs,
hostname,
username,
lib,
mylib,
config,
nixosConfig,
pkgs,
...
}:
# Here goes the stuff that will only be enabled on the desktop
rec {
{...}: {
imports = [
../../modules
];
@ -46,9 +35,11 @@ rec {
"DP-1" = [10];
};
autostart = [
"hyprctl dispatch exec \"sleep 15s && fcitx5\""
];
autostart = {
delayed = [
"fcitx5"
];
};
floating = [
{
@ -102,8 +93,8 @@ rec {
waybar.monitor = "HDMI-A-1";
};
home.packages = with pkgs; [
# quartus-prime-lite # Intel FPGA design software
];
# home.packages = with pkgs; [
# quartus-prime-lite # Intel FPGA design software
# ];
};
}