added from repo for now
This commit is contained in:
parent
e68f143de6
commit
45676774df
2 changed files with 16 additions and 4 deletions
10
flake.nix
10
flake.nix
|
|
@ -22,6 +22,11 @@
|
||||||
unstable = {
|
unstable = {
|
||||||
url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
i3-dotfiles = {
|
||||||
|
url = "git+ssh://git@github.com/alsaiduq-lab/i3-dotfiles";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
|
@ -88,7 +93,10 @@
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
extraSpecialArgs = {inherit inputs;};
|
extraSpecialArgs = {
|
||||||
|
inherit inputs;
|
||||||
|
i3dotfiles = inputs.i3-dotfiles;
|
||||||
|
};
|
||||||
users.cobray = import ./home-manager/cobray.nix;
|
users.cobray = import ./home-manager/cobray.nix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,12 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
|
i3dotfiles,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = with pkgs; [
|
programs.starship = {
|
||||||
starship
|
enable = true;
|
||||||
];
|
enableFishIntegration = true;
|
||||||
|
settings = lib.importTOML "${i3dotfiles}/starship.toml";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue