Files

31 lines
658 B
Nix
Raw Permalink 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
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 = "Senko";
})
(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";
})
];
hardware.bluetooth.enable = true;
2025-12-01 22:22:18 +03:00
host.laptop = true;
2026-04-21 17:48:52 +03:00
host.nvidia.prime.enable = true;
2025-03-21 00:12:27 +03:00
environment.systemPackages = [ pkgs.dbgate ];
2025-02-02 14:57:36 +03:00
}