mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 11:31:36 +01:00
26 lines
444 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|