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

30 lines
531 B
Nix
Raw Normal View History

2023-06-12 13:49:43 +02:00
{ ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "pc";
2023-05-25 11:40:57 +02:00
2023-06-12 13:49:43 +02:00
home-manager.users.thiloho = { ... }: {
wayland.windowManager.sway.config.output = {
DP-1 = {
bg = "/home/thiloho/background.jpg fill";
res = "1920x1080@144.000Hz";
2023-06-05 17:00:34 +02:00
};
2023-06-12 13:49:43 +02:00
DP-2 = {
bg = "/home/thiloho/background.jpg fill";
res = "1920x1080@144.000Hz";
2023-05-25 11:40:57 +02:00
};
};
2023-06-12 13:49:43 +02:00
programs.git = {
signing = {
key = "74F3E176485BE7DA";
2023-06-05 17:00:34 +02:00
};
};
};
}