mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-04 16:23:25 +00:00
Updates to ssh pub keys and remove packages from profile
This commit is contained in:
parent
ac4c3e32da
commit
97c49c2626
5 changed files with 33 additions and 58 deletions
|
@ -9,13 +9,13 @@
|
|||
zsh.prompt = "\n%B%F{cyan}%m:%F{blue}%~\n%F{green}$ %f%";
|
||||
zsh.rprompt = "%B%F{red}%*%f%b";
|
||||
|
||||
timezone = "America/Vancouver";
|
||||
timezone = "America/Edmonton";
|
||||
|
||||
username = "willem";
|
||||
|
||||
wallpapers = import ./wallpapers.nix;
|
||||
|
||||
sshAuthorizedKeyFiles = [./sshpubkeys/willem-nixbox ./sshpubkeys/willem-thinkpad ./sshpubkeys/willem-zeus];
|
||||
sshAuthorizedKeyFiles = [./sshpubkeys/willem-nixbox ./sshpubkeys/willem-thinkpad ./sshpubkeys/willem-zeus ./sshpubkeys/willem-evrlaptop];
|
||||
|
||||
zerotier.networks = ["17d709436ca2929d"];
|
||||
}
|
||||
|
|
1
common/sshpubkeys/willem-evrlaptop
Normal file
1
common/sshpubkeys/willem-evrlaptop
Normal file
|
@ -0,0 +1 @@
|
|||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDIN4HCNvddK9tFW8szanz5Msd6h4l6XzjWAdnSMJeR6 evr\wleitso@SPOL2186861
|
|
@ -9,13 +9,9 @@
|
|||
./programs/default.nix
|
||||
./modules/nix/pkgs-config.nix
|
||||
./modules/nix/use-flake-pkgs.nix
|
||||
../common/stylix.nix
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
inputs.stylix.homeManagerModules.stylix
|
||||
];
|
||||
|
||||
stylix.enable = true;
|
||||
|
||||
home = {
|
||||
username = globals.username;
|
||||
|
||||
|
|
|
@ -3,57 +3,33 @@
|
|||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
node-packages = with pkgs.nodePackages; [
|
||||
bash-language-server
|
||||
prettier
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
bash
|
||||
bat
|
||||
cachix
|
||||
coreutils
|
||||
curl
|
||||
devenv
|
||||
fd
|
||||
findutils
|
||||
gawk
|
||||
jq
|
||||
nix-tree
|
||||
nix-zsh-completions
|
||||
nixfmt-classic
|
||||
nixpkgs-fmt
|
||||
nmap
|
||||
openssh
|
||||
pass-git-helper
|
||||
pinentry-curses
|
||||
pv
|
||||
ripgrep
|
||||
rsync
|
||||
sqlite
|
||||
tealdeer
|
||||
unzip
|
||||
yq
|
||||
zsh-completions
|
||||
];
|
||||
fenix-rust = pkgs.fenix.combine (with pkgs.fenix; [
|
||||
latest.toolchain
|
||||
targets.thumbv7em-none-eabihf.latest.rust-std
|
||||
]);
|
||||
extras = [fenix-rust] ++ node-packages;
|
||||
in {
|
||||
home.packages =
|
||||
(with pkgs; [
|
||||
alejandra
|
||||
bash
|
||||
bat
|
||||
black
|
||||
cachix
|
||||
coreutils
|
||||
curl
|
||||
docker
|
||||
docker-compose
|
||||
dotnet-sdk
|
||||
fd
|
||||
findutils
|
||||
gawk
|
||||
git-crypt
|
||||
jq
|
||||
nix-tree
|
||||
nix-zsh-completions
|
||||
nixfmt-classic
|
||||
nixpkgs-fmt
|
||||
nmap
|
||||
nodejs
|
||||
omnisharp-roslyn
|
||||
openssh
|
||||
pass-git-helper
|
||||
pinentry-curses
|
||||
pv
|
||||
ripgrep
|
||||
rsync
|
||||
shellcheck
|
||||
shfmt
|
||||
sqlite
|
||||
tealdeer
|
||||
unzip
|
||||
vhdl-ls
|
||||
yq
|
||||
vhdl-ls
|
||||
vscode-langservers-extracted
|
||||
zsh-completions
|
||||
])
|
||||
++ extras;
|
||||
}
|
||||
|
|
|
@ -11,6 +11,8 @@ in {
|
|||
../modules/lemurs.nix
|
||||
];
|
||||
|
||||
programs.steam.enable = true;
|
||||
|
||||
programs.hyprland.enable = true;
|
||||
programs.hyprland.package = hyprpkgs.hyprland;
|
||||
programs.hyprland.portalPackage = hyprpkgs.xdg-desktop-portal-hyprland;
|
||||
|
|
Loading…
Add table
Reference in a new issue