nix/{os,home-manager}: cleanup

This commit is contained in:
steveej 2018-11-03 19:33:58 +01:00
parent f476755ac3
commit 3316605df5
6 changed files with 10 additions and 33 deletions

View file

@ -60,23 +60,13 @@ in {
home.packages =
[] ++ (with pkgs; [
# Authentication
cacert
fprintd
openssl
mkpasswd
# Nix package related tools
patchelf
nix-index
nix-prefetch-scripts
# Version Control Systems
git-crypt
gitFull
gitless
mr
gitRepo
# Process/System Administration
htop
@ -96,7 +86,6 @@ in {
lzop
# Password Management
gnupg
gnome3.gnome_keyring
gnome3.seahorse

View file

@ -22,12 +22,5 @@ in {
home.packages = []
++ (with pkgs; [
# Authentication
mkpasswd
# Version Control Systems
git-crypt
gitFull
mr
]);
}

View file

@ -47,4 +47,12 @@ in {
programs.command-not-found.enable = true;
programs.fzf.enable = true;
home.packages =
[] ++ (with pkgs; [
# Authentication
cacert
openssl
mkpasswd
]);
}

View file

@ -21,14 +21,4 @@ in {
fi
''};
'';
nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
homeshick = builtins.fetchGit {
url = "https://github.com/andsens/homeshick.git";
ref = "master";
};
};
};
}

View file

@ -19,6 +19,7 @@
pass-otp
qtpass
rofi-pass
gnupg
];
}

View file

@ -1,11 +1,7 @@
{
{
...
}:
{
imports = [
"${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "master"; }}/nixos"
];
home-manager.users.steveej = import ../../../home-manager/configuration/graphical-removable.nix;
}