2025-04-13 18:22:04 +03:00
|
|
|
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
|
|
|
laptop = true;
|
|
|
|
in {
|
2025-04-11 14:16:29 +03:00
|
|
|
imports = [
|
|
|
|
./secrets/secrets.nix
|
|
|
|
./modules/grub.nix
|
2025-04-13 19:15:46 +03:00
|
|
|
../modules/gpu/intel.nix
|
2025-04-11 14:16:29 +03:00
|
|
|
|
|
|
|
(import ../modules/common.nix {
|
|
|
|
inherit lib;
|
|
|
|
inherit inputs;
|
|
|
|
hostname = "Impreza";
|
|
|
|
})
|
|
|
|
|
|
|
|
(import ../../user/common.nix {
|
|
|
|
inherit config;
|
|
|
|
inherit pkgs;
|
|
|
|
inherit pkgs-stable;
|
|
|
|
inherit pkgs-fixed;
|
|
|
|
inherit lib;
|
|
|
|
inherit inputs;
|
2025-04-13 18:22:04 +03:00
|
|
|
inherit laptop;
|
2025-04-11 14:16:29 +03:00
|
|
|
name = "chest";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs.config.allowBroken = true;
|
|
|
|
programs.gamemode.enable = true;
|
|
|
|
hardware.bluetooth.enable = true;
|
2025-04-13 18:22:04 +03:00
|
|
|
host.laptop = laptop;
|
2025-04-11 14:16:29 +03:00
|
|
|
}
|