2025-04-13 18:22:04 +03:00
|
|
|
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
|
|
|
laptop = false;
|
|
|
|
in {
|
2025-02-02 14:57:36 +03:00
|
|
|
imports = [
|
|
|
|
./secrets/secrets.nix
|
|
|
|
./modules/aagl.nix
|
|
|
|
./modules/grub.nix
|
|
|
|
./modules/zram.nix
|
|
|
|
../modules/nvidia.nix
|
|
|
|
|
|
|
|
(import ../modules/common.nix {
|
|
|
|
inherit lib;
|
|
|
|
inherit inputs;
|
|
|
|
hostname = "Eclipse";
|
|
|
|
})
|
|
|
|
|
|
|
|
(import ../../user/common.nix {
|
|
|
|
inherit config;
|
|
|
|
inherit pkgs;
|
|
|
|
inherit pkgs-stable;
|
2025-03-30 22:22:46 +03:00
|
|
|
inherit pkgs-fixed;
|
2025-02-02 14:57:36 +03:00
|
|
|
inherit lib;
|
|
|
|
inherit inputs;
|
2025-04-13 18:22:04 +03:00
|
|
|
inherit laptop;
|
2025-02-02 14:57:36 +03:00
|
|
|
name = "chest";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2025-03-01 22:05:21 +03:00
|
|
|
nixpkgs.config.allowBroken = true;
|
2025-02-02 14:57:36 +03:00
|
|
|
programs.gamemode.enable = true;
|
|
|
|
}
|