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

35 lines
681 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 19:49:59 +02:00
home-manager.users.thiloho = { pkgs, lib, ... }: {
wayland.windowManager.sway.config.output = let
wallpaper = pkgs.fetchurl {
url = "https://imgur.com/aAWzGqj.jpg";
hash = "sha256-iTQS939Zrvjv4rBJ6Y41kdsBBN9lT5yAoJnNg/WiMoA=";
};
in {
2023-06-12 13:49:43 +02:00
DP-1 = {
2023-06-12 19:49:59 +02:00
bg = "${wallpaper} fill";
2023-06-12 13:49:43 +02:00
res = "1920x1080@144.000Hz";
2023-06-05 17:00:34 +02:00
};
2023-06-12 13:49:43 +02:00
DP-2 = {
2023-06-12 19:49:59 +02:00
bg = "${wallpaper} fill";
2023-06-12 13:49:43 +02:00
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
};
};
};
}