first home manager move

This commit is contained in:
Cyryl Płotnicki 2019-06-30 15:18:38 +01:00
parent a73e4ab2a9
commit 4550213468
2 changed files with 14 additions and 1 deletions

View file

@ -36,7 +36,7 @@ in
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" "vboxusers"];
packages = with pkgs; [
firefox chromium alacritty zsh keepass fontconfig go nodejs rustup gcc gdb
keepass fontconfig nodejs rustup gcc gdb
binutils xclip pkgconfig veracrypt gitAndTools.diff-so-fancy
gnome3.gnome-shell-extensions chrome-gnome-shell gnomeExtensions.clipboard-indicator
gnomeExtensions.caffeine gnomeExtensions.no-title-bar

13
nixos/home.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
# Let Home Manager install and manage itself.
programs = {
home-manager.enable = true;
firefox.enable = true;
chromium.enable = true;
alacritty.enable = true;
zsh.enable = true;
go.enable = true;
};
}