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

32 lines
735 B
Nix
Raw Normal View History

2025-12-01 23:19:06 +03:00
{ config, pkgs, pkgs-stable, pkgs-pinned, lib, inputs, ... }: {
2025-02-02 14:57:36 +03:00
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
2025-02-02 14:57:36 +03:00
(import ../modules/common.nix {
inherit lib;
inherit inputs;
hostname = "Eclipse";
})
(import ../../user/common.nix {
inherit config;
inherit pkgs;
2025-12-01 23:19:06 +03:00
inherit pkgs-stable;
inherit pkgs-pinned;
2025-02-02 14:57:36 +03:00
inherit lib;
inherit inputs;
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;
2025-07-18 16:25:27 +03:00
services.printing.enable = true;
2025-09-24 09:21:39 +03:00
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "chest" ];
2025-02-02 14:57:36 +03:00
}