stylix changes, cleanup and minor config changes
This commit is contained in:
parent
cc28b83270
commit
965e846234
2 changed files with 9 additions and 23 deletions
24
home.nix
24
home.nix
|
@ -25,6 +25,7 @@
|
||||||
brightnessctl
|
brightnessctl
|
||||||
curl
|
curl
|
||||||
distrobox
|
distrobox
|
||||||
|
dig
|
||||||
fd
|
fd
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
git
|
git
|
||||||
|
@ -224,7 +225,6 @@
|
||||||
tab_powerline_style = "round";
|
tab_powerline_style = "round";
|
||||||
tab_title_template = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}";
|
tab_title_template = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}";
|
||||||
};
|
};
|
||||||
# theme = "Catppuccin-Mocha";
|
|
||||||
};
|
};
|
||||||
lazygit = {
|
lazygit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -243,15 +243,6 @@
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
clipboard.providers.wl-copy.enable = true;
|
clipboard.providers.wl-copy.enable = true;
|
||||||
# colorschemes = {
|
|
||||||
# catppuccin = {
|
|
||||||
# enable = true;
|
|
||||||
# settings = {
|
|
||||||
# flavour = "mocha";
|
|
||||||
# show_end_of_buffer = true;
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
globals.mapleader = " ";
|
globals.mapleader = " ";
|
||||||
globals.maplocalleader = " ";
|
globals.maplocalleader = " ";
|
||||||
keymaps = [
|
keymaps = [
|
||||||
|
@ -291,8 +282,7 @@
|
||||||
cmp-cmdline.enable = true;
|
cmp-cmdline.enable = true;
|
||||||
cmp-fish.enable = true;
|
cmp-fish.enable = true;
|
||||||
cmp-nvim-lsp.enable = true;
|
cmp-nvim-lsp.enable = true;
|
||||||
cmp-nvim-ultisnips.enable = true;
|
lualine.enable = true;
|
||||||
lightline.enable = true;
|
|
||||||
fugitive.enable = true;
|
fugitive.enable = true;
|
||||||
gitblame.enable = true;
|
gitblame.enable = true;
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
|
@ -492,8 +482,8 @@
|
||||||
stylix = {
|
stylix = {
|
||||||
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-moon.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager = {
|
wayland.windowManager = {
|
||||||
|
@ -560,12 +550,6 @@
|
||||||
window = {
|
window = {
|
||||||
titlebar = false;
|
titlebar = false;
|
||||||
};
|
};
|
||||||
# workspaceOutputAssign = [
|
|
||||||
# {
|
|
||||||
# workspace = "2";
|
|
||||||
# output = "DP-1";
|
|
||||||
# }
|
|
||||||
# ];
|
|
||||||
workspaceOutputAssign =
|
workspaceOutputAssign =
|
||||||
map (x: {
|
map (x: {
|
||||||
workspace = x;
|
workspace = x;
|
||||||
|
|
|
@ -99,9 +99,11 @@
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
linger = true;
|
linger = true;
|
||||||
};
|
};
|
||||||
# Allow unfree packages
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config = {
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: true;
|
allowUnfree = true;
|
||||||
|
allowUnfreePredicate = pkg: true;
|
||||||
|
};
|
||||||
|
|
||||||
environment.shells = with pkgs; [ bash fish zsh ];
|
environment.shells = with pkgs; [ bash fish zsh ];
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
|
|
Loading…
Reference in a new issue