From ca495583065ebc74254fd486cf716fa6e83cb132 Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.uk>
Date: Tue, 4 Apr 2023 17:07:51 +0100
Subject: [PATCH] chore: remove Pop!_OS configuration

This is no longer needed as my laptop is running NixOS again.
---
 flake.nix |  5 -----
 justfile  | 11 ++++-------
 2 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/flake.nix b/flake.nix
index fcb86767..230f3cd5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -50,11 +50,6 @@
       };
 
       homeConfigurations = {
-        pop-os = home-manager.lib.homeManagerConfiguration {
-          modules = [ { nixpkgs.overlays = overlays; } ./system/pop-os.nix ];
-          pkgs = nixpkgs.legacyPackages.x86_64-linux;
-        };
-
         wsl2 = home-manager.lib.homeManagerConfiguration {
           modules = [ { nixpkgs.overlays = overlays; } ./system/wsl2.nix ];
           pkgs = nixpkgs.legacyPackages.x86_64-linux;
diff --git a/justfile b/justfile
index 7d3a22d0..7ef93f16 100644
--- a/justfile
+++ b/justfile
@@ -7,11 +7,8 @@ clean:
 nixos command profile: && clean
   sudo nixos-rebuild {{ command }} --flake .#{{ profile }}
 
-pop-os command *args: && clean
-  NIXPKGS_ALLOW_UNFREE=1 home-manager {{ command }} -f home-manager/home.nix --impure --flake .#pop-os {{ args }}
+wsl2 command: && clean
+  home-manager {{ command }} -f home-manager/home.nix --flake .#wsl2
 
-wsl2 command *args: && clean
-  home-manager {{ command }} -f home-manager/home.nix --flake .#wsl2 {{ args }}
-
-update *args:
-  nix flake update {{ args }}
+update:
+  nix flake update