Files
nixos-config/nixos-configurations/laptop/default.nix
2023-06-15 16:45:30 +02:00

31 lines
626 B
Nix

{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "laptop";
nixpkgs.config.allowUnfree = true;
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";
};
};
};
}