This commit is contained in:
2024-07-16 14:13:11 +02:00
parent 0c58dc9702
commit b6f39974ae
3 changed files with 20 additions and 3 deletions

View File

@@ -65,7 +65,7 @@
};
xkb = {
layout = "de";
options = "caps:swapescape";
options = "caps:deadgraveacute";
};
};
# Enable CUPS to print.

View File

@@ -68,7 +68,7 @@
eliasDesktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./machines/configuration-desktop.nix
./machines/configuration-desktop2.nix
./home/services/pipewire.nix
nur.nixosModules.nur
home-manager.nixosModules.home-manager
@@ -77,7 +77,7 @@
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
users.elias = import ./home/default-desktop.nix;
users.elias = import ./home/default-laptop.nix;
};
nixpkgs.overlays = [
(final: prev: {

View File

@@ -0,0 +1,17 @@
{ 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
];
}