This commit is contained in:
2024-08-25 15:05:50 +02:00
parent b6f39974ae
commit 45ed7f9394
9 changed files with 91 additions and 120 deletions

View File

@@ -7,15 +7,8 @@
# Hostname
networking.hostName = "eliasDesktop";
systemd.user.services.autorandr = {
description = "autorandr profile loader";
serviceConfig = {
Type = "oneshot";
RemainAfterExit = "yes";
};
script = ''
${pkgs.autorandr}/bin/autorandr --change --default desktop-dual
'';
wantedBy = [ "graphical-session.target" ];
};
environment.systemPackages = with pkgs; [
gnome.networkmanager-vpnc
networkmanagerapplet
];
}

View File

@@ -1,17 +0,0 @@
{ config, lib, pkgs, ... }:
{
# Import general Configs
imports = [ ./../hardware-configuration-desktop.nix ./../configuration.nix ];
# Hostname
networking.hostName = "eliasDesktop";
services.blueman.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
environment.systemPackages = with pkgs; [
gnome.networkmanager-vpnc
networkmanagerapplet
];
}