From b6f39974aef527c6ed503f668e8cde58c2598ef7 Mon Sep 17 00:00:00 2001 From: 4Lost Date: Tue, 16 Jul 2024 14:13:11 +0200 Subject: [PATCH] test --- configuration.nix | 2 +- flake.nix | 4 ++-- machines/configuration-desktop2.nix | 17 +++++++++++++++++ 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 machines/configuration-desktop2.nix diff --git a/configuration.nix b/configuration.nix index cf05020..a0b725b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -65,7 +65,7 @@ }; xkb = { layout = "de"; - options = "caps:swapescape"; + options = "caps:deadgraveacute"; }; }; # Enable CUPS to print. diff --git a/flake.nix b/flake.nix index d29b2bd..359359d 100644 --- a/flake.nix +++ b/flake.nix @@ -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: { diff --git a/machines/configuration-desktop2.nix b/machines/configuration-desktop2.nix new file mode 100644 index 0000000..129a735 --- /dev/null +++ b/machines/configuration-desktop2.nix @@ -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 + ]; +}