diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-09 09:44:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-09 09:44:39 -0700 |
commit | bb43c9a4a098878255844759667d492f9c0995a1 (patch) | |
tree | 86ab2cbc6b06baaa44859ce6f7e1c9969e143861 | |
parent | add a few more modules to home/ and delete stuff (diff) | |
download | world-bb43c9a4a098878255844759667d492f9c0995a1.tar.gz |
small fixes
Diffstat (limited to '')
-rw-r--r-- | home/element/default.nix | 2 | ||||
-rw-r--r-- | home/mpv/default.nix | 2 | ||||
-rw-r--r-- | home/sublime-music/default.nix | 2 | ||||
-rw-r--r-- | home/vlc/default.nix | 2 | ||||
-rw-r--r-- | hosts/aptos/home.nix | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/home/element/default.nix b/home/element/default.nix index 44fa583..3fcb50e 100644 --- a/home/element/default.nix +++ b/home/element/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, pkgs, ... }: let cfg = config.my.home.element; in { options.my.home.element = with lib; { diff --git a/home/mpv/default.nix b/home/mpv/default.nix index 7013c0b..b6c2c60 100644 --- a/home/mpv/default.nix +++ b/home/mpv/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, pkgs, ... }: let cfg = config.my.home.mpv; in { options.my.home.mpv = with lib; { diff --git a/home/sublime-music/default.nix b/home/sublime-music/default.nix index 93b5c98..fad10ac 100644 --- a/home/sublime-music/default.nix +++ b/home/sublime-music/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, pkgs, ... }: let cfg = config.my.home.sublime-music; in { options.my.home.sublime-music = with lib; { diff --git a/home/vlc/default.nix b/home/vlc/default.nix index 0afd3b7..f7ad141 100644 --- a/home/vlc/default.nix +++ b/home/vlc/default.nix @@ -1,4 +1,4 @@ -{ lib, config, ... }: +{ lib, config, pkgs, ... }: let cfg = config.my.home.vlc; in { options.my.home.vlc = with lib; { diff --git a/hosts/aptos/home.nix b/hosts/aptos/home.nix index c7e0dab..1bfd236 100644 --- a/hosts/aptos/home.nix +++ b/hosts/aptos/home.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { my.home = { packages.enable = true; - elements.enable = true; + element.enable = true; fish.enable = true; git.enable = true; go.enable = true; |