organization on joe, todo gpdpocket3 (#1)

This commit is contained in:
Joshua Bell 2024-04-01 08:34:46 -07:00 committed by GitHub
parent 92e0a90f23
commit aa9b15702a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 219 additions and 148 deletions

View file

@ -0,0 +1,22 @@
{ config, lib, pkgs, settings, ylib, ... } @ inputs:
let
home-manager = builtins.fetchTarball {
url = "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
# to get hash run `nix-prefetch-url --unpack "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz"`
sha256 = "0g51f2hz13dk953i501fmc6935difhz60741nypaqwz127hy5ldk";
};
in
{
imports =
[
# home manager import
(import "${home-manager}/nixos")
];
# Home manager options
security.polkit.enable = true;
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = { inherit settings; inherit ylib; inherit (inputs) ragenix; inherit (config) age; };
}