Upgrade darwin

This commit is contained in:
Cyryl Płotnicki 2022-06-15 12:15:38 +01:00
parent 46eff2e33b
commit ed2e709ec5
No known key found for this signature in database
GPG key ID: 534222210FE423ED
3 changed files with 1 additions and 81 deletions

View file

@ -44,7 +44,6 @@
sops
ssh-to-age
tmux
topgrade
unzip
wget
whois

View file

@ -11,6 +11,7 @@
lm_sensors
nerdfonts
powertop
topgrade
wirelesstools
];
}

View file

@ -1,80 +0,0 @@
{ config, pkgs, ... }:
let
unstableTarball = fetchTarball
"https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz";
dotfiles = "/home/cyryl/dev/dotfiles";
in {
home.username = "cyryl";
home.homeDirectory = "/home/cyryl";
home.stateVersion = "21.11";
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import unstableTarball { inherit (config.nixpkgs) config; };
};
};
home.sessionVariables = { LOCALE_ARCHIVE = /usr/lib/locale/locale-archive; };
targets.genericLinux.enable = true;
home.file.".gitconfig".source = ~/dev/dotfiles/.gitconfig.linux.form3;
imports = [
./git/home.nix
./home-manager/programs/tmux.nix
./home-manager/links.nix
./home-manager/programs/vim.nix
./home-manager/programs/zsh.nix
];
programs = {
home-manager.enable = true;
z-lua = {
enable = true;
enableAliases = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
gpg = {
enable = true;
settings = { };
};
taskwarrior.enable = true;
fzf.enable = true;
go.enable = true;
bat.enable = true;
lsd.enable = true;
lsd.enableAliases = true;
};
home.packages = with pkgs; [
aria
bfg-repo-cleaner
curl
dnsutils
docker-compose
du-dust
fd
file
fontconfig
git
hsetroot
htop
imagemagick
jmtpfs
jq
nixpkgs-fmt
ripgrep
rustup
terraform
tmux
unstable.exercism
unstable.genpass
unstable.topgrade
unzip
wget
whois
];
}