Re: [Nix-dev] Banning people from the mailinglist?

2017-04-04 Thread Arnold Krille
Hi, On Tue, 4 Apr 2017 14:22:48 +0200 Profpatsch wrote: > On 17-04-04 10:05am, Matthias Beyer wrote: > > Can we just ban the (non-constructive) "fuck systemd" people? I > > mean... nobody benefits from this kind of behaviour and it creates > > frustration all over the

Re: [Nix-dev] nixos-container networking

2017-03-14 Thread Arnold Krille
Hi, I think one of the best resources showing how networking and containers works, is the tests for containers and networking ;-) From them I also based my setup which you can see a slightly old version of at https://github.com/kampfschlaefer/nixconfig. Also you already found the 13-char limit

Re: [Nix-dev] Wrong tags in nixpkgs

2017-02-28 Thread Arnold Krille
On Tue, 28 Feb 2017 12:12:43 -0800 Kamil Chmielewski wrote: > Yep, something went wrong, those are tags from my private *channel*. > I don't how could than happened and how could I remove it from > upstream? git push origin : the : in front of what you want to push marks it

[Nix-dev] Better firewalling in NixOS (PR: 12940)

2017-02-11 Thread Arnold Krille
Hey all, I updated my PR for better firewalling once again and you can find it at https://github.com/NixOS/nixpkgs/pull/12940. Please give reviews, comments and merge if appropriate. I can't believe its been almost a year since I started that PR. Needless to say these changes are part of the

Re: [Nix-dev] nix-bundle: Bundle Nix derivations to run anywhere

2017-02-07 Thread Arnold Krille
On Mon, 6 Feb 2017 18:33:19 -0600 Matthew Bauer wrote: > GitHub page: https://github.com/matthewbauer/nix-bundle > > I just wanted to post about a little project I've been working on. I'm > calling it "nix-bundle". > > Basically, what it does is: take a Nix closure,

Re: [Nix-dev] Distributing files between machines in a nixops deployment

2016-11-19 Thread Arnold Krille
On Sat, 19 Nov 2016 12:10:59 +0100 Marius Bergmann wrote: > Is it possible to declare the distribution of a file (in my case a ssh > server/client public key) to different machines in a nixops > deployment? > > I want to create a client keypair on one machine and then authorize >

Re: [Nix-dev] Proposal: adding fetchapt support to nixpkgs

2016-11-18 Thread Arnold Krille
On Tue, 25 Oct 2016 04:42:28 + Chuan-kai Lin wrote: > I have been thinking about adding Debian-package-fetching > functionality (tentatively named fetchapt) into nixpkgs, and I'd like > to hear your thoughts. > > First, why would anyone want such a thing? > > Nixpkgs

Re: [Nix-dev] /etc/nixos/configuration.nix not versioned?

2016-09-16 Thread Arnold Krille
Hi, On Fri, 16 Sep 2016 09:13:27 -0700 Wink Saville wrote: > As a newbie I was playing around and last night I rolled back to an > older configuration and realized that the configuration.nix file > didn't rollback. I can now realize that configuration.nix has nothing > to do

Re: [Nix-dev] Two declarative ways to install a package?

2016-08-12 Thread Arnold Krille
On Fri, 12 Aug 2016 16:15:46 +0200 "Guillaume Maudoux (Layus)" wrote: > I would rather see it as a convenience. > The package is in your store anyway, so better make it available in > user shells. No, only expose what is needed or wanted explicit (explicit is better then

Re: [Nix-dev] Why nginx config isn't placed into /etc/nginx/nginx.conf?

2016-08-09 Thread Arnold Krille
On Tue, 9 Aug 2016 19:54:10 +0100 Luca Bruno wrote: > When using Nixos to define my system, I want to use Nixos to define my > > system. No other 'orchestration' software or (god forbid) any > > user/admin should change that the imperative way. Only then can I > > use nix

Re: [Nix-dev] Why nginx config isn't placed into /etc/nginx/nginx.conf?

2016-08-09 Thread Arnold Krille
On Tue, 9 Aug 2016 18:06:50 +0100 Luca Bruno wrote: > So, there are few drawbacks with the read-only nginx config as it is. > Of course, you can at any time run the nginx with an /etc/nginx > config that you write imperatively, by creating a brand new systemd > service and

Re: [Nix-dev] Declarative containers with more veths

2016-07-24 Thread Arnold Krille
Hi all, I would like to raise your attention again to this PR of mine: https://github.com/NixOS/nixpkgs/pull/15496 I have been using this for the last month without problems and it would be a nice addition to the nixos-containers. - Arnold On Thu, 16 Jun 2016 22:52:44 +0200 Arnold Krille <

Re: [Nix-dev] Inconsistency detected by ld.so

2016-07-21 Thread Arnold Krille
Hi, sorry for the long delay, holiday got in the way. On Wed, 6 Jul 2016 17:55:14 +0200 Renato Alves wrote: > Do you by any chance have LD_LIBRARY_PATH set? > If yes, check if unset'ing it helps. While I had used LD_LIBRARY_PATH in the past, I do not have it on this setup.

[Nix-dev] Declarative containers with more veths

2016-06-16 Thread Arnold Krille
Hi all, I would like to raise your attention to a PR of mine: https://github.com/NixOS/nixpkgs/pull/15496 It add the ability to give declarative containers more than one veth. With this its possible to use containers to connect two host-side bridges, for example as firewall/proxy. Or when the

Re: [Nix-dev] When creating a bridge interface, the bridge doesn't appear

2016-06-15 Thread Arnold Krille
did you define anything depending on the bridge? that is did you configure anything in networking.interfaces? - Arnold Am 15. Juni 2016 02:28:54 MESZ, schrieb Matthew Robbetts : >Hi list, > >(I filed an issue at GitHub >(https://github.com/NixOS/nixpkgs/issues/16230

Re: [Nix-dev] Importing a .nix.gpg file?

2016-06-13 Thread Arnold Krille
On Sun, 12 Jun 2016 12:34:21 +0200 Michal Rus wrote: > in my nixos-config, I’ve got wifi-passwords.nix.gpg (the rest of the > config is publicly available), and what I’d like to do is: > > import ./wifi-passwords.nix.gpg; > > Or: > > imports = [

Re: [Nix-dev] Custom directories

2016-05-25 Thread Arnold Krille
On Wed, 25 May 2016 17:26:24 +0300 Daniel Hlynskyi wrote: > Hi. What's canonical Nixos way to specify custom directories? > > I'm playing with containers. Here is excerpt of my config: > > fileSystems."/media/logs" = { fsType = "ext4"; label = "logs"; }; >

[Nix-commits] [NixOS/nixpkgs] 0b0f75: unbound service: do not initialize root cert

2016-05-21 Thread Arnold Krille
Branch: refs/heads/release-16.03 Home: https://github.com/NixOS/nixpkgs Commit: 0b0f759b9361ca18d136e870a94e3088f2d85356 https://github.com/NixOS/nixpkgs/commit/0b0f759b9361ca18d136e870a94e3088f2d85356 Author: Arnold Krille <arn...@arnoldarts.de> Date: 2016-05-21 (Sat,

[Nix-commits] [NixOS/nixpkgs] bf0e74: unbound service: do not initialize root cert

2016-05-21 Thread Arnold Krille
Branch: refs/heads/master Home: https://github.com/NixOS/nixpkgs Commit: bf0e745597c5fc9547e41905f0f0354d009f154e https://github.com/NixOS/nixpkgs/commit/bf0e745597c5fc9547e41905f0f0354d009f154e Author: Arnold Krille <arn...@arnoldarts.de> Date: 2016-05-21 (Sat, 21 Ma

Re: [Nix-dev] Source URL breakage – please can we improve the determinism

2016-05-08 Thread Arnold Krille
On Sun, 8 May 2016 18:11:09 +0300 Игорь Пашев wrote: > Can't be nix cache used for this? Source tarballs are kind of > derivation too. Somehow I was under the impression that the output of "fetchFromUrl" or "fetchFromGit" was also a result worth storing in the nix-store.

Re: [Nix-dev] environment in systemd services

2016-01-30 Thread Arnold Krille
ing > access to the right keys. > > On Sat, 30 Jan 2016 at 13:20 Arnold Krille <arn...@arnoldarts.de> > wrote: > > > Hi all, > > > > yes, its the first time I am writing on this list. > > > > I am trying to get duply/duplicity to run. When I execute `du

[Nix-dev] [Fixed?] Re: environment in systemd services

2016-01-30 Thread Arnold Krille
m not sure if this is the right solution, but at least I got some backups working now. As soon as I add backups to a local disk I will check again if duply can't run with the system environment… Have fun, Arnold On Sat, 30 Jan 2016 14:34:21 +0100 Arnold Krille <arn...@arnoldarts.de> wrote: > Nope,

[Nix-dev] environment in systemd services

2016-01-30 Thread Arnold Krille
Hi all, yes, its the first time I am writing on this list. I am trying to get duply/duplicity to run. When I execute `duply amazon backup` in a root shell, all is well. But I want it to be run regularly by systemd. So I created a service: ``` systemd.services.duplyamazon = { path = [