mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
completely remove secondary home-manager section
This commit is contained in:
parent
cb66ca402e
commit
2a225debe5
16
flake.nix
16
flake.nix
@ -37,6 +37,7 @@
|
|||||||
inherit user fullName font;
|
inherit user fullName font;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
./nixos/configuration.nix
|
./nixos/configuration.nix
|
||||||
./nixos/hardware-configuration.nix
|
./nixos/hardware-configuration.nix
|
||||||
./nixos/home.nix
|
./nixos/home.nix
|
||||||
@ -45,17 +46,6 @@
|
|||||||
./modules/gaming
|
./modules/gaming
|
||||||
./modules/services/keybase.nix
|
./modules/services/keybase.nix
|
||||||
./modules/applications/firefox.nix
|
./modules/applications/firefox.nix
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager = {
|
|
||||||
useGlobalPkgs = true;
|
|
||||||
useUserPackages = true;
|
|
||||||
extraSpecialArgs = {
|
|
||||||
gui = true;
|
|
||||||
inherit user fullName font;
|
|
||||||
};
|
|
||||||
users.${user} = {
|
|
||||||
imports = [
|
|
||||||
./modules/applications/alacritty.nix
|
./modules/applications/alacritty.nix
|
||||||
./modules/shell/fish.nix
|
./modules/shell/fish.nix
|
||||||
./modules/shell/utilities.nix
|
./modules/shell/utilities.nix
|
||||||
@ -65,10 +55,6 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ];
|
buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ];
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ pkgs, config, font, ... }: {
|
{ pkgs, user, font, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${user} = {
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
@ -68,4 +70,5 @@
|
|||||||
draw_bold_text_with_bright_colors = false;
|
draw_bold_text_with_bright_colors = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,19 @@
|
|||||||
{ config, pkgs, ... }: {
|
{ pkgs, user, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${user} = {
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
neovim
|
neovim
|
||||||
gcc # for tree-sitter
|
gcc # for tree-sitter
|
||||||
];
|
];
|
||||||
|
|
||||||
xdg.configFile = { "nvim/init.lua".source = ../../nvim.configlink/init.lua; };
|
xdg.configFile = {
|
||||||
|
"nvim/init.lua".source = ../../nvim.configlink/init.lua;
|
||||||
|
};
|
||||||
|
|
||||||
programs.git.extraConfig.core.editor = "nvim";
|
programs.git.extraConfig.core.editor = "nvim";
|
||||||
home.sessionVariables = { EDITOR = "nvim"; };
|
home.sessionVariables = { EDITOR = "nvim"; };
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,16 @@
|
|||||||
services.keybase.enable = true;
|
services.keybase.enable = true;
|
||||||
services.kbfs.enable = true;
|
services.kbfs.enable = true;
|
||||||
|
|
||||||
home-manager.users.${user}.home.packages =
|
home-manager.users.${user} = {
|
||||||
[ (lib.mkIf gui pkgs.keybase-gui) ];
|
home.packages = [ (lib.mkIf gui pkgs.keybase-gui) ];
|
||||||
|
home.file = let
|
||||||
|
ignorePatterns = ''
|
||||||
|
keybase/
|
||||||
|
kbfs/'';
|
||||||
|
in {
|
||||||
|
".rgignore".text = ignorePatterns;
|
||||||
|
".fdignore".text = ignorePatterns;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{ pkgs, ... }: {
|
{ pkgs, user, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${user} = {
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
functions = { };
|
functions = { };
|
||||||
@ -112,4 +113,5 @@
|
|||||||
"starship.toml".source = ../../starship/starship.toml.configlink;
|
"starship.toml".source = ../../starship/starship.toml.configlink;
|
||||||
"fish/functions".source = ../../fish.configlink/functions;
|
"fish/functions".source = ../../fish.configlink/functions;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{ config, pkgs, fullName, ... }: {
|
{ pkgs, user, fullName, ... }: {
|
||||||
|
|
||||||
|
home-manager.users.${user} = {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = fullName;
|
userName = fullName;
|
||||||
@ -39,5 +40,6 @@
|
|||||||
gcp = "git cherry-pick";
|
gcp = "git cherry-pick";
|
||||||
cdg = "cd (git rev-parse --show-toplevel)";
|
cdg = "cd (git rev-parse --show-toplevel)";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
{ config, pkgs, ... }: {
|
{ pkgs, user, ... }: {
|
||||||
|
|
||||||
imports = [ ./git.nix ];
|
imports = [ ./git.nix ];
|
||||||
|
|
||||||
|
home-manager.users.${user} = {
|
||||||
programs.gh = {
|
programs.gh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableGitCredentialHelper = true;
|
enableGitCredentialHelper = true;
|
||||||
@ -10,10 +11,12 @@
|
|||||||
|
|
||||||
programs.fish.shellAbbrs = {
|
programs.fish.shellAbbrs = {
|
||||||
ghr = "gh repo view -w";
|
ghr = "gh repo view -w";
|
||||||
gha = "gh run list | head -1 | awk '{ print $(NF-2) }' | xargs gh run view";
|
gha =
|
||||||
|
"gh run list | head -1 | awk '{ print $(NF-2) }' | xargs gh run view";
|
||||||
grw = "gh run watch";
|
grw = "gh run watch";
|
||||||
grf = "gh run view --log-failed";
|
grf = "gh run view --log-failed";
|
||||||
grl = "gh run view --log";
|
grl = "gh run view --log";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, ... }:
|
{ pkgs, user, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
@ -9,14 +9,13 @@ let
|
|||||||
!*.tfvars
|
!*.tfvars
|
||||||
.terraform/
|
.terraform/
|
||||||
.target/
|
.target/
|
||||||
/Library/
|
/Library/'';
|
||||||
keybase/
|
|
||||||
kbfs/
|
|
||||||
'';
|
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home-manager.users.${user}.home = {
|
||||||
|
|
||||||
|
packages = with pkgs; [
|
||||||
unzip
|
unzip
|
||||||
rsync
|
rsync
|
||||||
fzf
|
fzf
|
||||||
@ -35,9 +34,11 @@ in {
|
|||||||
glow
|
glow
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
file = {
|
||||||
".rgignore".text = ignorePatterns;
|
".rgignore".text = ignorePatterns;
|
||||||
".fdignore".text = ignorePatterns;
|
".fdignore".text = ignorePatterns;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,8 @@ let
|
|||||||
notes_path = "$HOME/dev/personal/notes";
|
notes_path = "$HOME/dev/personal/notes";
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
home-manager.users.${user} = {
|
home-manager.users.${user} = {
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user