Modularize hardware config and remove specific nix folder
This commit is contained in:
parent
a5042bb645
commit
9ac5b25036
72 changed files with 322 additions and 100 deletions
31
hardware/overheating/configuration.nix
Normal file
31
hardware/overheating/configuration.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
imports = [
|
||||
../../modules/conf.nix
|
||||
];
|
||||
conf = {
|
||||
monitor = "eDP-1";
|
||||
scale = "2.0";
|
||||
hostname = "overheating";
|
||||
boot_params = [ "rtc_cmos.use_acpi_alarm=1" ];
|
||||
ironbar.modules = [
|
||||
{ type = "upower"; class = "memory-usage"; }
|
||||
];
|
||||
hyprland = {
|
||||
monitor = [
|
||||
# default
|
||||
"eDP-1,2944x1840@90,0x0,2"
|
||||
|
||||
# all others
|
||||
",highres,auto,1"
|
||||
];
|
||||
extra_autostart = [ "hyprdock --server" ];
|
||||
};
|
||||
colorscheme = "catppuccin-mocha";
|
||||
};
|
||||
mods = {
|
||||
amdgpu.enable = true;
|
||||
kde_connect.enable = true;
|
||||
bluetooth.enable = true;
|
||||
acpid.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue