home

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

commit d69fee13504f89bbf29ae96bd008f545aedf3e5c
parent 32964fa7948776448efc12accf35b294b437f3ff
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu,  1 Nov 2018 18:43:17 +0100

machines: create machines

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Rnix-channels -> assets/nix-channels | 0
Dbase.nix | 30------------------------------
Amachines/base.nix | 30++++++++++++++++++++++++++++++
Rhokkaido.nix -> machines/hokkaido.nix | 0
Rhonshu.nix -> machines/honshu.nix | 0
Rremote-dev.nix -> machines/remote-dev.nix | 0
Rshikoku.nix -> machines/shikoku.nix | 0
Rshikoku.win.nix -> machines/shikoku.win.nix | 0
Rwakasu.nix -> machines/wakasu.nix | 0
9 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/nix-channels b/assets/nix-channels diff --git a/base.nix b/base.nix @@ -1,30 +0,0 @@ -{ pkgs, prefix, ...}: - -let home_directory = builtins.getEnv "HOME"; in - -rec { - imports = [ modules/module-list.nix ]; - programs = { - home-manager = { - enable = true; - path = https://github.com/rycee/home-manager/archive/master.tar.gz; - }; - }; - home.file.".nix-channels".source = ./nix-channels; - home.packages = with pkgs; [ - aspell - aspellDicts.en - aspellDicts.fr - direnv - enchive - entr - exa - fd - htop - jq #dev - pass - scripts - tree - yq #dev - ]; -} diff --git a/machines/base.nix b/machines/base.nix @@ -0,0 +1,30 @@ +{ pkgs, prefix, ...}: + +let home_directory = builtins.getEnv "HOME"; in + +rec { + imports = [ ../modules/module-list.nix ]; + programs = { + home-manager = { + enable = true; + path = https://github.com/rycee/home-manager/archive/master.tar.gz; + }; + }; + home.file.".nix-channels".source = ../assets/nix-channels; + home.packages = with pkgs; [ + aspell + aspellDicts.en + aspellDicts.fr + direnv + enchive + entr + exa + fd + htop + jq #dev + pass + scripts + tree + yq #dev + ]; +} diff --git a/hokkaido.nix b/machines/hokkaido.nix diff --git a/honshu.nix b/machines/honshu.nix diff --git a/remote-dev.nix b/machines/remote-dev.nix diff --git a/shikoku.nix b/machines/shikoku.nix diff --git a/shikoku.win.nix b/machines/shikoku.win.nix diff --git a/wakasu.nix b/machines/wakasu.nix