test
This commit is contained in:
@@ -65,7 +65,7 @@
|
|||||||
};
|
};
|
||||||
xkb = {
|
xkb = {
|
||||||
layout = "de";
|
layout = "de";
|
||||||
options = "caps:swapescape";
|
options = "caps:deadgraveacute";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# Enable CUPS to print.
|
# Enable CUPS to print.
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
eliasDesktop = nixpkgs.lib.nixosSystem {
|
eliasDesktop = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./machines/configuration-desktop.nix
|
./machines/configuration-desktop2.nix
|
||||||
./home/services/pipewire.nix
|
./home/services/pipewire.nix
|
||||||
nur.nixosModules.nur
|
nur.nixosModules.nur
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
extraSpecialArgs = { inherit inputs; };
|
extraSpecialArgs = { inherit inputs; };
|
||||||
users.elias = import ./home/default-desktop.nix;
|
users.elias = import ./home/default-laptop.nix;
|
||||||
};
|
};
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(final: prev: {
|
(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