chore: readme
This commit is contained in:
parent
2cb85edb66
commit
8027b46e5e
7 changed files with 19 additions and 29 deletions
|
|
@ -4,8 +4,8 @@ my minimal barless nixos configuration.
|
||||||
|
|
||||||
## showcase
|
## showcase
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
yes, my configuration is better than yours.
|
yes, my configuration is better than yours.
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@
|
||||||
home-manager,
|
home-manager,
|
||||||
stylix,
|
stylix,
|
||||||
spicetify-nix,
|
spicetify-nix,
|
||||||
|
nixvim,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
@ -45,6 +46,7 @@
|
||||||
./home/home.nix
|
./home/home.nix
|
||||||
spicetify-nix.homeManagerModules.spicetify
|
spicetify-nix.homeManagerModules.spicetify
|
||||||
stylix.homeModules.stylix
|
stylix.homeModules.stylix
|
||||||
|
nixvim.homeModules.nixvim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
home-manager.backupFileExtension = "hm-backup";
|
home-manager.backupFileExtension = "hm-backup";
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
{inputs, ...}: {
|
{
|
||||||
imports = [inputs.nixvim.homeModules.nixvim];
|
|
||||||
|
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
@ -27,9 +25,6 @@
|
||||||
# keymaps
|
# keymaps
|
||||||
./keymaps.nix
|
./keymaps.nix
|
||||||
|
|
||||||
# theme
|
|
||||||
./theme.nix
|
|
||||||
|
|
||||||
# options
|
# options
|
||||||
./options.nix
|
./options.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
colorschemes = {
|
|
||||||
tokyonight = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
transparent = true;
|
|
||||||
style = "night";
|
|
||||||
mini_completion = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
autoEnable = true;
|
autoEnable = true;
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyodark.yaml";
|
||||||
|
|
||||||
icons = {
|
icons = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -29,6 +29,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
stylix.targets.sway.enable = true;
|
stylix.targets.sway.enable = true;
|
||||||
stylix.targets.nixvim.enable = false;
|
stylix.targets.nixvim = {
|
||||||
|
enable = true;
|
||||||
|
colors.enable = true;
|
||||||
|
plugin = "base16-nvim";
|
||||||
|
};
|
||||||
stylix.targets.spicetify.enable = false;
|
stylix.targets.spicetify.enable = false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{lib, ...}: {
|
||||||
programs.tofi = {
|
programs.tofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
num-results = 5;
|
num-results = 5;
|
||||||
outline-width = 0;
|
outline-width = 0;
|
||||||
padding-left = "35%";
|
padding-left = "35%";
|
||||||
|
font-size = lib.mkForce 24;
|
||||||
padding-top = "35%";
|
padding-top = "35%";
|
||||||
result-spacing = 25;
|
result-spacing = 25;
|
||||||
width = "100%";
|
width = "100%";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue