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

31 lines
687 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/grub.nix
./modules/syncthing.nix
../../modules/host/adb.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 = "Rias";
})
(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 = "sweetbread";
fullname = "Sweet Bread";
})
];
programs.gamemode.enable = true;
2025-06-08 01:18:25 +03:00
services.printing.enable = true;
2025-09-25 19:49:33 +03:00
hardware.opentabletdriver.enable = true;
2025-02-02 14:57:36 +03:00
}