diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-28 23:11:37 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-28 23:11:37 +0200 |
commit | c201d21dc4f4c3401e99fe66b4cc907f81c3e893 (patch) | |
tree | 7a1dc93fc378f887fc61393466e04126e57c0cd1 /hosts | |
parent | VM: Migrate to EFI and add packages (diff) | |
download | nixos-config-c201d21dc4f4c3401e99fe66b4cc907f81c3e893.tar.gz nixos-config-c201d21dc4f4c3401e99fe66b4cc907f81c3e893.tar.bz2 nixos-config-c201d21dc4f4c3401e99fe66b4cc907f81c3e893.zip |
fmt
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/home.nix | 8 | ||||
-rw-r--r-- | hosts/luna/home.nix | 15 | ||||
-rw-r--r-- | hosts/phobos/home.nix | 12 |
3 files changed, 20 insertions, 15 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 2edad88..9612449 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -34,9 +34,11 @@ in git-crypt nixpkgs-fmt paperkey - custom.smart-wallpaper - custom.dwmbar - ]; + ] ++ + (with pkgs.custom; [ + smart-wallpaper + dwmbar + ]); }; services = { diff --git a/hosts/luna/home.nix b/hosts/luna/home.nix index 295d312..c79241e 100644 --- a/hosts/luna/home.nix +++ b/hosts/luna/home.nix @@ -4,17 +4,18 @@ let in { home.packages = with pkgs; [ - #minecraft - #jetbrains.idea-community + jetbrains.idea-community xorg.xmodmap calibre qtcreator kcc - custom.adl - custom.trackma - custom.kindlegen - custom.manga-cli - ]; + ] ++ + (with pkgs.custom; [ + adl + trackma + kindlegen + manga-cli + ]); programs.firefox.profiles.default.settings = { "media.ffmpeg.vaapi.enabled" = true; #Hardware acceleration diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix index ac3b6ff..15575f9 100644 --- a/hosts/phobos/home.nix +++ b/hosts/phobos/home.nix @@ -9,11 +9,13 @@ in calibre qtcreator kcc - custom.adl - custom.trackma - custom.kindlegen - custom.manga-cli - ]; + ] ++ + (with pkgs.custom; [ + adl + trackma + kindlegen + manga-cli + ]); programs.firefox.profiles.default.settings = { "media.ffmpeg.vaapi.enabled" = true; #Hardware acceleration |