diff --git a/hosts/main.nix b/hosts/main.nix index 33d97a6..7b7cbdf 100644 --- a/hosts/main.nix +++ b/hosts/main.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { imports = [ @@ -18,33 +18,12 @@ ../nix-os/account.nix ../nix-os/xdg-default-apps.nix ../nix-os/services/nix-binary-cache.nix - ../nix-os/udev.nix - - (builtins.fetchTarball "https://github.com/nix-community/nixos-vscode-server/tarball/fc900c16efc6a5ed972fb6be87df018bcf3035bc") ]; config = { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "wroclaw-main"; - - services.xrdp.enable = true; - users.groups."tsusers".members = [ "wroclaw" ]; - - services.printing.drivers = with pkgs; [ - hplip - ]; - - # nixos-vscode-server module needs this - programs.nix-ld.enable = true; - services.vscode-server = { - enable = true; - extraRuntimeDependencies = with pkgs; [ - docker - ]; - }; - system.stateVersion = "23.05"; }; -} +} \ No newline at end of file diff --git a/hosts/tablet.nix b/hosts/tablet.nix index 4cb94ff..b369d47 100644 --- a/hosts/tablet.nix +++ b/hosts/tablet.nix @@ -11,7 +11,6 @@ ../nix-os/desktopManagers/gnome.nix ../nix-os/displayManagers/gdm.nix - ../nix-os/udev.nix ]; config = { diff --git a/hosts/vm.nix b/hosts/vm.nix index 0b99d01..c91a794 100644 --- a/hosts/vm.nix +++ b/hosts/vm.nix @@ -14,6 +14,5 @@ ../nix-os/adb.nix ../nix-os/account.nix ../nix-os/xdg-default-apps.nix - ../nix-os/udev.nix ]; } \ No newline at end of file diff --git a/nix-os/udev.nix b/nix-os/udev.nix deleted file mode 100644 index 5c27b88..0000000 --- a/nix-os/udev.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - config = { - hardware.ledger.enable = true; - }; -}