nixos-config/host/Eclipse/configuration.nix

32 lines
643 B
Nix
Raw Normal View History

{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
laptop = false;
in {
imports = [
./secrets/secrets.nix
./modules/aagl.nix
./modules/grub.nix
./modules/zram.nix
2025-04-13 19:15:46 +03:00
../modules/gpu/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;
inherit lib;
inherit inputs;
inherit laptop;
name = "chest";
})
];
2025-03-01 22:05:21 +03:00
nixpkgs.config.allowBroken = true;
programs.gamemode.enable = true;
}