global pkgs
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nixpkgs.overlays = [ (import ../custom-pkgs { inherit lib inputs; }) ];
|
|
||||||
imports = [ ../gnome ../custom-programs ./neovim ];
|
imports = [ ../gnome ../custom-programs ./neovim ];
|
||||||
|
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
|
|||||||
@@ -1,5 +1,12 @@
|
|||||||
{ config, pkgs, ksoloti-pr, inputs, ... }:
|
{ ksoloti-pr, inputs, ... }:
|
||||||
{
|
{
|
||||||
home-manager.users.jokke = import ./jokke { inherit pkgs ksoloti-pr inputs; };
|
home-manager = {
|
||||||
home-manager.users.moco = import ./moco { inherit config pkgs inputs; };
|
users = {
|
||||||
|
jokke = import ./jokke;
|
||||||
|
moco = import ./moco;
|
||||||
|
};
|
||||||
|
extraSpecialArgs = { inherit ksoloti-pr inputs; };
|
||||||
|
useUserPackages = true;
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, lib, inputs, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
nixpkgs.overlays = [ (import ../custom-pkgs { inherit lib inputs; }) ];
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
|
|||||||
Reference in New Issue
Block a user