From dedd3b7daf2721cc59ee9cdb583105ae5fc515c1 Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Mon, 18 Mar 2024 11:33:45 -0800 Subject: [PATCH] enable flatpak and unstable pkgs for knockout --- configuration.nix | 2 ++ flake.nix | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index f55158f..2081397 100644 --- a/configuration.nix +++ b/configuration.nix @@ -156,6 +156,8 @@ emacs29-pgtk ]; + services.flatpak.enable = true; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; diff --git a/flake.nix b/flake.nix index a1d452b..c46c8e4 100644 --- a/flake.nix +++ b/flake.nix @@ -116,7 +116,7 @@ sound.enable = true; } ./hardware/knockout-hw.nix - home-manager.nixosModules.home-manager + inputs.home-manager-unstable.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; @@ -125,7 +125,7 @@ } ]; # end of modules in - nixpkgs.lib.nixosSystem {inherit system modules specialArgs; }; + inputs.nixpkgs-unstable.lib.nixosSystem {inherit system modules specialArgs; }; }; }; }