removed unstable input

This commit is contained in:
Danilo Reyes 2024-04-28 12:45:25 -06:00
parent 4bcb766dec
commit 71184851d8
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, pkgs, ... }:
let
unstable = import
(builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master") {

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, pkgs, ... }:
{
options.my.apps.dictionaries.enable = lib.mkEnableOption "enable";

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, pkgs, ... }:
{
options.my.apps.fonts.enable = lib.mkEnableOption "enable";

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, pkgs, ... }:
{
options.my.apps.internet.enable = lib.mkEnableOption "enable";

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }: {
{ config, lib, pkgs, ... }: {
options.my.emacs.enable = lib.mkEnableOption "enable";
config = lib.mkIf config.my.emacs.enable {
users.users.jawz.packages = with pkgs; ([

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, unstable, ... }:
{ config, lib, pkgs, ... }:
{
options.my.shell.exercism.enable = lib.mkEnableOption "enable";