removes work specific files uses unified modules
This commit is contained in:
parent
80c8cdef62
commit
8d24fc479e
12 changed files with 169 additions and 491 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
home.username = "dennis";
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
GOPATH = "$HOME/go";
|
||||
JAVA_HOME = "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home";
|
||||
JAVA_HOME = "/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home";
|
||||
ANDROID_HOME = "$HOME/Library/Android/sdk";
|
||||
};
|
||||
|
||||
|
|
@ -15,11 +15,10 @@
|
|||
|
||||
imports = [
|
||||
../modules/git
|
||||
../modules/fish/work.nix
|
||||
../modules/atuin
|
||||
../modules/zoxide
|
||||
../modules/fish
|
||||
../modules/wezterm
|
||||
../modules/nvim
|
||||
../modules/lazygit
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
home.username = "dennis";
|
||||
|
|
@ -16,14 +16,10 @@
|
|||
../modules/ssh
|
||||
../modules/git
|
||||
../modules/zoxide
|
||||
../modules/atuin
|
||||
../modules/fish
|
||||
../modules/wezterm
|
||||
../modules/nvim
|
||||
../modules/lazygit
|
||||
../modules/raycast
|
||||
../modules/zellij
|
||||
../modules/ghostty
|
||||
../modules/zellij
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,15 +1,18 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
nix = {
|
||||
package = pkgs.nix;
|
||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
settings.experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (_: true);
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -33,7 +36,6 @@
|
|||
lazygit
|
||||
fortune
|
||||
zoxide
|
||||
atuin
|
||||
fnm
|
||||
gcc
|
||||
];
|
||||
|
|
@ -43,7 +45,6 @@
|
|||
imports = [
|
||||
../modules/git
|
||||
../modules/fish
|
||||
../modules/atuin
|
||||
../modules/nvim/deck.nix
|
||||
../modules/lazygit
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ _config, pkgs, inputs, ... }:
|
||||
{ _config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "dennis";
|
||||
|
|
@ -64,8 +64,11 @@
|
|||
antialiasing = true;
|
||||
defaultFonts = {
|
||||
monospace = [ "VictorMono Nerd Font" ];
|
||||
sansSerif = [ "Adwaita Sans" "Noto Color Emoji" ];
|
||||
serif = ["Bodoni Moda"];
|
||||
sansSerif = [
|
||||
"Adwaita Sans"
|
||||
"Noto Color Emoji"
|
||||
];
|
||||
serif = [ "Bodoni Moda" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -85,7 +88,7 @@
|
|||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 24;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Services
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue