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

35 lines
589 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
2023-06-01 23:51:51 +02:00
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
};
2023-06-02 09:39:05 +02:00
programs.sway.enable = true;
2023-05-25 11:40:57 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
2023-06-03 05:37:30 +02:00
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod1";
terminal = "alacritty";
};
};
2023-05-25 11:40:57 +02:00
programs.git = {
signing = {
key = "29791D54E85BEE9E";
};
};
};
}