all repos — archive/nixos-configuration @ 52b72d494d3090418202043f05ca87e9e82b75dd

Superseded by nixfiles

modules/dotfiles.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

let
  pkgsUnstable = import <nixos-unstable> {};
  # pkgsUnstable = pkgs;
in
{ environment.systemPackages = with pkgs; [
    git
    stow
    fzf
    pkgsUnstable.ghq
  ];
}