summaryrefslogtreecommitdiff
path: root/configuration/work/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration/work/default.nix')
-rw-r--r--configuration/work/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/configuration/work/default.nix b/configuration/work/default.nix
deleted file mode 100644
index 2073ea5..0000000
--- a/configuration/work/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib, pkgs, ... }:
-{
- imports = [
- ../core
- ../hyprland.nix
-
- ./hardware-configuration.nix
- ./home-manager.nix
- ./networking.nix
- ./secrets.nix
- ./tailscale.nix
- ];
-
- system.stateVersion = "24.05"; # Do NOT change before reading configuration.nix
-
- users.users.jras.extraGroups = [ "networkmanager" "docker" ];
- security.sudo.wheelNeedsPassword = lib.mkForce true;
-
- time.timeZone = "Europe/Amsterdam";
-
- virtualisation.docker = {
- enable = true;
- enableOnBoot = true;
- };
-
- hardware.bluetooth.enable = true;
- hardware.bluetooth.powerOnBoot = true;
-
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
-
- services.libinput.mouse.accelProfile = "flat";
- services.libinput.mouse.accelSpeed = "-5";
- services.upower.enable = true;
-
- services.xserver.xkb = {
- layout = "us";
- variant = "";
- };
-
- programs.gnupg.agent.enable = true;
- programs.gnupg.agent.pinentryPackage = pkgs.pinentry-gnome3;
-}