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

42 lines
717 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../shared.nix
];
networking.hostName = "pc";
2023-05-25 11:40:57 +02:00
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
};
2023-06-01 23:51:51 +02:00
programs.sway.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 = {
mode = "1920x1080@144.000Hz";
};
DP-2 = {
mode = "1920x1080@144.000Hz";
};
};
2023-06-03 05:37:30 +02:00
};
};
programs.git = {
signing = {
key = "29791D54E85BEE9E";
2023-05-25 11:40:57 +02:00
};
};
};
}