Move necessary env variable to laptop only

This commit is contained in:
thiloho
2023-06-03 05:42:48 +02:00
parent bee7c8ef3a
commit 881d16746f
3 changed files with 55 additions and 57 deletions

View File

@@ -1,12 +1,15 @@
{ config, pkgs, ... }:
{
imports =
[
imports = [
./hardware-configuration.nix
../shared.nix
];
environment.variables = {
TERMINAL = "alacritty";
};
networking.hostName = "laptop";
services.xserver = {

View File

@@ -1,8 +1,7 @@
{ config, pkgs, ... }:
{
imports =
[
imports = [
./hardware-configuration.nix
../shared.nix
];

View File

@@ -34,10 +34,6 @@
sound.enable = true;
security.rtkit.enable = true;
environment.variables = {
TERMINAL = "alacritty";
};
fonts.fonts = with pkgs; [
noto-fonts-cjk-sans
];