mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 03:21:35 +01:00
Move necessary env variable to laptop only
This commit is contained in:
@@ -1,34 +1,33 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../shared.nix
|
||||
];
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../shared.nix
|
||||
];
|
||||
|
||||
networking.hostName = "pc";
|
||||
networking.hostName = "pc";
|
||||
|
||||
services.xserver = {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
};
|
||||
|
||||
programs.sway.enable = true;
|
||||
|
||||
home-manager.users.thiloho = { pkgs, ... }: {
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
};
|
||||
|
||||
programs.sway.enable = true;
|
||||
|
||||
home-manager.users.thiloho = { pkgs, ... }: {
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = {
|
||||
modifier = "Mod1";
|
||||
terminal = "alacritty";
|
||||
};
|
||||
};
|
||||
programs.git = {
|
||||
signing = {
|
||||
key = "29791D54E85BEE9E";
|
||||
};
|
||||
config = {
|
||||
modifier = "Mod1";
|
||||
terminal = "alacritty";
|
||||
};
|
||||
};
|
||||
programs.git = {
|
||||
signing = {
|
||||
key = "29791D54E85BEE9E";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user