Skip to content

Commit

Permalink
treewide: drop desktop wsl host
Browse files Browse the repository at this point in the history
I haven't used it in weeks now and I honestly am finding it annoying
with how clunky its gotten. It would consistently fail to setup the
`PATH` environment variable, which would fail to link the setuid
binaries, and occasionally would fail to startup the daemon, citing
a missing socket.

I simply don't use it enough for it to be worth my time to fix these
issues. Eventually once I am able to install NixOS on the direct
hardware I'll return this host, obviously without the WSL bindings.
Until then, it shall stay gone.
  • Loading branch information
Frontear committed Dec 10, 2024
1 parent e9b1839 commit a312edd
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 143 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
matrix:
outputs: [
'nixosConfigurations.LAPTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.DESKTOP-3DT4F02.config.system.build.toplevel',
'nixosConfigurations.ISO-3DT4F02.config.system.build.isoImage'
]
steps:
Expand Down
72 changes: 0 additions & 72 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@
nixos-hardware = {
url = "github:NixOS/nixos-hardware";
};

nixos-wsl = {
url = "github:nix-community/NixOS-WSL";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
Expand Down
20 changes: 0 additions & 20 deletions hosts/desktop/configuration.nix

This file was deleted.

10 changes: 0 additions & 10 deletions hosts/desktop/default.nix

This file was deleted.

22 changes: 0 additions & 22 deletions hosts/desktop/hardware-configuration.nix

This file was deleted.

9 changes: 0 additions & 9 deletions nix/nixosConfigurations/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
let
inherit (inputs)
nixos-hardware
nixos-wsl
;

inherit (self) lib;
Expand All @@ -21,14 +20,6 @@ in {
../../hosts/laptop
];
}
{
hostName = "DESKTOP-3DT4F02";
modules = [
nixos-wsl.nixosModules.default

../../hosts/desktop
];
}
{
hostName = "ISO-3DT4F02";
modules = [
Expand Down
4 changes: 0 additions & 4 deletions users/frontear/nixos/per-host.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,5 @@
(lib.optionalAttrs (options ? isoImage) {
services.displayManager.autoLogin.user = "frontear";
})

(lib.optionalAttrs (options ? wsl) {
wsl.defaultUser = "frontear";
})
];
}

0 comments on commit a312edd

Please sign in to comment.