Commit 608660618071

Vincent Demeester <vincent@sbr.pm>
2018-08-05 15:18:44
Update home configuration
- Add media - Import some more from `vdemeester/nixos-configuration`
1 parent 1be8ba5
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; [
+    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
-    spotify
-    i3lock-color
-    alacritty # create a `programs.alacritty`
-    gnome3.defaultIconTheme
-    gnome3.gnome_themes_standard
   ];
   nixpkgs.config = {
     allowUnfree = true;
hokkaido.nix
@@ -27,8 +27,6 @@ with pkgs; {
   '';
   home.packages = with pkgs; [
     vscode
-    zoom-us
-    debootstrap
     weechat weechat-xmpp
   ];
 }
media.nix
@@ -0,0 +1,7 @@
+{ pkgs, prefix, ... }:
+
+{
+  home.packages = with pkgs; [
+    mpv
+  ];
+}