Files
nixos-config/nixos-configurations/laptop/default.nix

32 lines
680 B
Nix
Raw Normal View History

2023-06-15 16:45:30 +02:00
{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../shared.nix
];
networking.hostName = "laptop";
2023-06-15 07:57:12 +02:00
hardware.firmware = [ pkgs.broadcom-bt-firmware ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
2023-05-11 15:36:33 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
2023-06-12 22:19:58 +02:00
wayland.windowManager.sway.config.output = let
2023-06-12 22:53:49 +02:00
wallpaper = pkgs.callPackage ../wallpaper.nix {};
2023-06-12 22:19:58 +02:00
in {
eDP-1 = {
bg = "${wallpaper} fill";
};
};
programs.git = {
signing = {
2023-06-15 16:45:30 +02:00
key = "11BA77C2BDCEBF6A";
2023-05-25 11:40:57 +02:00
};
};
2023-07-02 00:18:17 +02:00
home.stateVersion = "23.05";
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}