nixos-config/host/Impreza/configuration.nix

32 lines
659 B
Nix
Raw Normal View History

2025-05-05 14:58:11 +03:00
{ config, pkgs, pkgs-unstable, 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;
2025-05-05 14:58:11 +03:00
inherit pkgs-unstable;
2025-04-11 14:16:29 +03:00
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
}