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

34 lines
643 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
2023-06-12 22:53:49 +02:00
wallpaper = pkgs.callPackage ../wallpaper.nix {};
2023-06-12 19:49:59 +02:00
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
};
};
2023-06-24 21:36:20 +00:00
home.stateVersion = "23.05";
};
2023-06-24 21:36:20 +00:00
system.stateVersion = "23.05";
}