Files
nixos-config/nixos-configurations/pc/default.nix
2023-06-03 08:00:22 +02:00

39 lines
667 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "pc";
hardware.opengl.enable = true;
security.polkit.enable = true;
home-manager.users.thiloho = { pkgs, ... }: {
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod1";
terminal = "alacritty";
output = {
DP-1 = {
res = "1920x1080@144.000Hz";
};
DP-2 = {
res = "1920x1080@144.000Hz";
};
};
};
};
programs.git = {
signing = {
key = "29791D54E85BEE9E";
};
};
};
}