mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 03:21:35 +01:00
29 lines
588 B
Nix
29 lines
588 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "laptop";
|
|
|
|
hardware.firmware = [ pkgs.broadcom-bt-firmware ];
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
|
wayland.windowManager.sway.config.output = let
|
|
wallpaper = pkgs.callPackage ../wallpaper.nix {};
|
|
in {
|
|
eDP-1 = {
|
|
bg = "${wallpaper} fill";
|
|
};
|
|
};
|
|
programs.git = {
|
|
signing = {
|
|
key = "11BA77C2BDCEBF6A";
|
|
};
|
|
};
|
|
};
|
|
}
|