add enoko hm config
This commit is contained in:
parent
4675d6db52
commit
def4a69b5d
5 changed files with 32 additions and 0 deletions
|
@ -56,6 +56,14 @@
|
||||||
./home-manager/home.nix
|
./home-manager/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"${username}@enoko" = lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
extraSpecialArgs = { inherit inputs outputs username; };
|
||||||
|
modules = [
|
||||||
|
./home-manager/home.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
10
home-manager/devel.nix
Normal file
10
home-manager/devel.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{lib, pkgs, config, ...}: {
|
||||||
|
# install some base linux packages for development
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
gcc
|
||||||
|
gnumake
|
||||||
|
|
||||||
|
lazygit
|
||||||
|
unzip
|
||||||
|
];
|
||||||
|
}
|
|
@ -89,6 +89,16 @@
|
||||||
gaa = "git add --all";
|
gaa = "git add --all";
|
||||||
gco = "git checkout";
|
gco = "git checkout";
|
||||||
editorigin = "git remote set-url origin";
|
editorigin = "git remote set-url origin";
|
||||||
|
|
||||||
|
# nix aliases
|
||||||
|
n = "nix";
|
||||||
|
nd = "nix develop";
|
||||||
|
ns = "nix shell";
|
||||||
|
np = "nix profile";
|
||||||
|
ngc = "nix-collect-garbage";
|
||||||
|
hm = "home-manager";
|
||||||
|
hmreload = "cd ~/nix-config && home-manager switch --flake .#(whoami)@(hostname) && cd -";
|
||||||
|
hminplace = "home-manager switch --flake .#(whoami)@(hostname)";
|
||||||
};
|
};
|
||||||
|
|
||||||
plugins = [
|
plugins = [
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
}: {
|
}: {
|
||||||
# You can import other home-manager modules here
|
# You can import other home-manager modules here
|
||||||
imports = [
|
imports = [
|
||||||
|
./devel.nix
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./mise.nix
|
./mise.nix
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ config, pkgs, lib, ... }: {
|
{ config, pkgs, lib, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
python3 # needed for installing node.js
|
||||||
|
];
|
||||||
programs.mise = {
|
programs.mise = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue