Files
nixos-config/host/Impreza/configuration.nix
T

30 lines
636 B
Nix
Raw Normal View History

2025-12-01 23:19:06 +03:00
{ config, pkgs, pkgs-stable, pkgs-pinned, lib, inputs, ... }: {
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-12-01 23:19:06 +03:00
inherit pkgs-stable;
inherit pkgs-pinned;
2025-04-11 14:16:29 +03:00
inherit lib;
inherit inputs;
name = "chest";
})
];
2025-12-01 19:15:35 +03:00
nix.settings.cores = 3;
2025-04-11 14:16:29 +03:00
nixpkgs.config.allowBroken = true;
programs.gamemode.enable = true;
hardware.bluetooth.enable = true;
2025-12-01 22:22:18 +03:00
host.laptop = true;
2025-04-11 14:16:29 +03:00
}