nixos-config/host/Eclipse/configuration.nix

29 lines
592 B
Nix
Raw Normal View History

2025-03-30 22:22:46 +03:00
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: {
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;
inherit lib;
inherit inputs;
name = "chest";
})
];
2025-03-01 22:05:21 +03:00
nixpkgs.config.allowBroken = true;
programs.gamemode.enable = true;
}