mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-17 07:44:41 +04:00
try to migrate to nix
This commit is contained in:
parent
f2f4ead62f
commit
94da1ce936
26 changed files with 830 additions and 181 deletions
29
nix/personal.nix
Normal file
29
nix/personal.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ pkgs
|
||||
, inputs
|
||||
, ...
|
||||
}@args:
|
||||
{
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.kp2pml30 = import ./personal/home.nix args;
|
||||
|
||||
users.users.kp2pml30 = import ./personal/user.nix args;
|
||||
|
||||
programs = {
|
||||
fish.enable = true;
|
||||
tmux.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
fish
|
||||
fishPlugins.grc
|
||||
grc
|
||||
|
||||
fira-code
|
||||
nerd-fonts.fira-code
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue