hosts: sets up dnsc-machine config
This commit is contained in:
parent
40f9c9b81e
commit
77b44f7f3c
4 changed files with 191 additions and 0 deletions
33
home/linux.nix
Normal file
33
home/linux.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ _config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "dennis";
|
||||
home.homeDirectory = "/home/dennis";
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neofetch
|
||||
zip
|
||||
unzip
|
||||
ripgrep
|
||||
fzf
|
||||
fd
|
||||
sd
|
||||
bat
|
||||
tldr
|
||||
fortune
|
||||
just
|
||||
mmv-go
|
||||
zoxide
|
||||
];
|
||||
|
||||
imports = [
|
||||
../modules/ssh
|
||||
../modules/git
|
||||
../modules/zoxide
|
||||
../modules/fish
|
||||
../modules/wezterm
|
||||
../modules/nvim
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
Loading…
Add table
Add a link
Reference in a new issue