-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bringing back homeModules and setting everything locally
- Loading branch information
Showing
24 changed files
with
1,496 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | ||
"logo": { | ||
"source": "orzklv", | ||
"padding": { | ||
"top": 3, | ||
"right": 3, | ||
"left": 3 | ||
} | ||
}, | ||
"display": { | ||
"binaryPrefix": "si", | ||
"color": "black" | ||
}, | ||
"modules": [ | ||
"title", | ||
"separator", | ||
"os", | ||
"host", | ||
"kernel", | ||
"uptime", | ||
"packages", | ||
"shell", | ||
"display", | ||
"de", | ||
"wm", | ||
"wmtheme", | ||
"theme", | ||
"icons", | ||
"font", | ||
"cursor", | ||
"terminal", | ||
"terminalfont", | ||
"cpu", | ||
"gpu", | ||
"memory", | ||
"swap", | ||
"disk", | ||
"localip", | ||
"battery", | ||
"poweradapter", | ||
"locale", | ||
"break", | ||
"colors" | ||
] | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## | ||
#### | ||
###### | ||
################### | ||
################### | ||
################## | ||
###### ############ | ||
####### ############ | ||
####### ############ | ||
####### | ||
####### | ||
####### | ||
###### | ||
#### | ||
## |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
inputs, | ||
lib, | ||
pkgs, | ||
config, | ||
outputs, | ||
packages, | ||
self, | ||
... | ||
}: { | ||
imports = [ | ||
outputs.homeManagerModules.zsh | ||
outputs.homeManagerModules.neovim | ||
outputs.homeManagerModules.nixpkgs | ||
outputs.homeManagerModules.topgrade | ||
outputs.homeManagerModules.packages | ||
]; | ||
|
||
# This is required information for home-manager to do its job | ||
home = { | ||
stateVersion = "24.05"; | ||
username = "sakhib"; | ||
homeDirectory = "/home/sakhib"; | ||
|
||
# Tell it to map everything in the `config` directory in this | ||
# repository to the `.config` in my home-manager directory | ||
file.".config" = { | ||
source = ../.github/configs/config; | ||
recursive = true; | ||
}; | ||
|
||
file.".local/share" = { | ||
source = ../.github/configs/share; | ||
recursive = true; | ||
}; | ||
|
||
# Don't check if home manager is same as nixpkgs | ||
enableNixpkgsReleaseCheck = false; | ||
}; | ||
|
||
# Let's enable home-manager | ||
programs.home-manager.enable = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Add your reusable home-manager modules to this directory, on their own file (https://nixos.wiki/wiki/Module). | ||
# These should be stuff you would like to share with others, not your personal configurations. | ||
{ | ||
# List your module files here | ||
zsh = import ./zsh; | ||
neovim = import ./neovim; | ||
nixpkgs = import ./nixpkgs; | ||
topgrade = import ./topgrade; | ||
packages = import ./packages; | ||
} |
Oops, something went wrong.