nixos-config/host/Impreza/configuration.nix

32 lines
655 B
Nix
Raw Normal View History

{ 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;
inherit laptop;
2025-04-11 14:16:29 +03:00
name = "chest";
})
];
nixpkgs.config.allowBroken = true;
programs.gamemode.enable = true;
hardware.bluetooth.enable = true;
host.laptop = laptop;
2025-04-11 14:16:29 +03:00
}