Files
nixos-config/nixos-configurations/laptop/default.nix
2023-06-12 22:53:49 +02:00

26 lines
444 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "laptop";
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 = "86C465C22C8A4D56";
};
};
};
}