home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 608660618071c4019b232958a1323b92ad580bca
parent 1be8ba5acfe2d93dff154515d73ad2a41ad9a7d5
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sun,  5 Aug 2018 15:18:44 +0200

Update home configuration

- Add media
- Import some more from `vdemeester/nixos-configuration`

Diffstat:
Mdesktop.nix | 19+++++++++++++------
Mhokkaido.nix | 2--
Amedia.nix | 7+++++++
3 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/desktop.nix b/desktop.nix @@ -1,7 +1,7 @@ { pkgs, prefix, ... }: { - imports = [ ./fish.nix ./ssh.nix ./i3.nix ./base.nix ]; + imports = [ ./fish.nix ./ssh.nix ./i3.nix ./media.nix ./base.nix ]; home.keyboard = { layout = "fr(bepo),fr"; variant = "oss"; @@ -46,14 +46,21 @@ enable = true; }; home.packages = with pkgs; [ - xdg-user-dirs - xdg_utils - youtube-dl - spotify - i3lock-color alacritty # create a `programs.alacritty` + aspell + aspellDicts.en + aspellDicts.fr gnome3.defaultIconTheme gnome3.gnome_themes_standard + i3lock-color + keybase + # pass + peco + scrot + spotify + xdg-user-dirs + xdg_utils + youtube-dl ]; nixpkgs.config = { allowUnfree = true; diff --git a/hokkaido.nix b/hokkaido.nix @@ -27,8 +27,6 @@ with pkgs; { ''; home.packages = with pkgs; [ vscode - zoom-us - debootstrap weechat weechat-xmpp ]; } diff --git a/media.nix b/media.nix @@ -0,0 +1,7 @@ +{ pkgs, prefix, ... }: + +{ + home.packages = with pkgs; [ + mpv + ]; +}