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

39 lines
667 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "pc";
2023-06-03 08:00:22 +02:00
hardware.opengl.enable = true;
2023-05-25 11:40:57 +02:00
2023-06-03 06:48:05 +02:00
security.polkit.enable = true;
2023-06-02 09:39:05 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod1";
terminal = "alacritty";
2023-06-03 06:16:02 +02:00
output = {
DP-1 = {
2023-06-03 06:20:32 +02:00
res = "1920x1080@144.000Hz";
2023-06-03 06:16:02 +02:00
};
DP-2 = {
2023-06-03 06:20:32 +02:00
res = "1920x1080@144.000Hz";
2023-06-03 06:16:02 +02:00
};
};
2023-06-03 05:37:30 +02:00
};
};
programs.git = {
signing = {
key = "29791D54E85BEE9E";
2023-05-25 11:40:57 +02:00
};
};
};
}