Files
nixos-config/nixos-configurations/pc/default.nix
2023-07-05 07:34:53 +02:00

35 lines
669 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
../shared-desktop.nix
../shared.nix
];
networking.hostName = "pc";
home-manager.users.thiloho = { pkgs, lib, ... }: {
wayland.windowManager.sway.config.output = let
wallpaper = pkgs.callPackage ../wallpaper.nix {};
in {
DP-1 = {
bg = "${wallpaper} fill";
res = "1920x1080@144.000Hz";
};
DP-2 = {
bg = "${wallpaper} fill";
res = "1920x1080@144.000Hz";
};
};
programs.git = {
signing = {
key = "A6C6D25B9687377B";
};
};
home.stateVersion = "23.05";
};
system.stateVersion = "23.05";
}