unstable home-manager
This commit is contained in:
@@ -14,6 +14,12 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager-us = {
|
||||||
|
url = "github:nix-community/home-manager/master";
|
||||||
|
#url = "git+ssh://gitea@gitea.blunkall.us/Blunkall-Technologies/home-manager?ref=release-24.11";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-us";
|
||||||
|
};
|
||||||
|
|
||||||
#nixpkgs-droid.url = "git+ssh://gitea@gitea.blunkall.us/Blunkall-Technologies/nixpkgs?ref=nixos-24.05";
|
#nixpkgs-droid.url = "git+ssh://gitea@gitea.blunkall.us/Blunkall-Technologies/nixpkgs?ref=nixos-24.05";
|
||||||
/*
|
/*
|
||||||
home-manager-droid = {
|
home-manager-droid = {
|
||||||
|
|||||||
@@ -1,10 +1,21 @@
|
|||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, inputs, ... }: {
|
||||||
|
|
||||||
options.homeconfig.wayvnc.enable = lib.options.mkOption {
|
options.homeconfig.wayvnc.enable = lib.options.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
disabledModules = [
|
||||||
|
];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
(import "${inputs.home-manager-us}/home-manager/modules/services/wayvnc.nix" {
|
||||||
|
inherit config;
|
||||||
|
inherit lib;
|
||||||
|
pkgs = (import inputs.nixpkgs-us { system = "x86_64-linux"; });
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
config = lib.mkIf config.homeconfig.wayvnc.enable {
|
config = lib.mkIf config.homeconfig.wayvnc.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
novnc
|
novnc
|
||||||
|
|||||||
Reference in New Issue
Block a user