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

26 lines
444 B
Nix
Raw Normal View History

2023-06-12 14:13:39 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "laptop";
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 = {
key = "86C465C22C8A4D56";
2023-05-25 11:40:57 +02:00
};
};
};
}