aboutsummaryrefslogtreecommitdiff
path: root/site/posts/2018-07-15-running-guix-on-nixos.org
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2018-07-17 22:25:37 -0300
committerEuAndreh <eu@euandre.org>2018-07-17 22:25:37 -0300
commita5168763e0636267b22b9e4639a6f00c663c0053 (patch)
tree37f3088ff0c85667e882b3ee01c6f142e8d21a64 /site/posts/2018-07-15-running-guix-on-nixos.org
parentUse proper deploy folder (diff)
downloadeuandre.org-a5168763e0636267b22b9e4639a6f00c663c0053.tar.gz
euandre.org-a5168763e0636267b22b9e4639a6f00c663c0053.tar.xz
Rename file to proper date and write content on Guix and NixOS
Diffstat (limited to 'site/posts/2018-07-15-running-guix-on-nixos.org')
-rw-r--r--site/posts/2018-07-15-running-guix-on-nixos.org52
1 files changed, 0 insertions, 52 deletions
diff --git a/site/posts/2018-07-15-running-guix-on-nixos.org b/site/posts/2018-07-15-running-guix-on-nixos.org
deleted file mode 100644
index ebf5400..0000000
--- a/site/posts/2018-07-15-running-guix-on-nixos.org
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Running Guix on NixOS
-date: 2018-07-15
----
-https://riot.im/app/#/room/#freenode_#guix:matrix.org/$1531510045400627zjGbq:matrix.org
-* h1
-** h2
-#+BEGIN_SRC nix -n
- # FIXME: add line number
- { config, pkgs, ...}:
-
- {
-
- # NixOS usual config
-
- users = {
- mutableUsers = false;
-
- extraUsers =
- let
- andrehUser = {
- andreh = {
- # my custom user config
- };
- };
- # From the Guix manual:
- # https://www.gnu.org/software/guix/manual/en/html_node/Build-Environment-Setup.html#Build-Environment-Setup
- buildUser = (i:
- {
- "guixbuilder${i}" = { # guixbuilder$i
- group = "guixbuild"; # -g guixbuild
- extraGroups = ["guixbuild"]; # -G guixbuild
- home = "/var/empty"; # -d /var/empty
- shell = pkgs.nologin; # -s `which nologin`
- description = "Guix build user ${i}"; # -c "Guix buid user $i"
- isSystemUser = true; # --system
- };
- }
- );
- in
- # merge all users
- pkgs.lib.fold (str: acc: acc // buildUser str)
- andrehUser
- # for i in `seq -w 1 10`
- (map (pkgs.lib.fixedWidthNumber 2) (builtins.genList (n: n+1) 10));
-
- extraGroups.guixbuild = {
- name = "guixbuild";
- };
- };
- }
-#+END_SRC