test
This commit is contained in:
@@ -65,7 +65,7 @@
|
||||
};
|
||||
xkb = {
|
||||
layout = "de";
|
||||
options = "caps:swapescape";
|
||||
options = "caps:deadgraveacute";
|
||||
};
|
||||
};
|
||||
# Enable CUPS to print.
|
||||
|
||||
@@ -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: {
|
||||
|
||||
17
machines/configuration-desktop2.nix
Normal file
17
machines/configuration-desktop2.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user