nixos-config/host/Rias/configuration.nix

32 lines
657 B
Nix
Raw Normal View History

2025-05-05 14:58:11 +03:00
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
laptop = false;
in {
imports = [
./secrets/secrets.nix
./modules/grub.nix
./modules/syncthing.nix
../../modules/host/adb.nix
2025-04-13 19:15:46 +03:00
../modules/gpu/nvidia.nix
(import ../modules/common.nix {
inherit lib;
inherit inputs;
hostname = "Rias";
})
(import ../../user/common.nix {
inherit config;
inherit pkgs;
2025-05-05 14:58:11 +03:00
inherit pkgs-unstable;
2025-03-30 22:22:46 +03:00
inherit pkgs-fixed;
inherit lib;
inherit inputs;
inherit laptop;
name = "sweetbread";
fullname = "Sweet Bread";
})
];
programs.gamemode.enable = true;
}