stylix changes

This commit is contained in:
Charlie Root 2024-07-10 23:10:52 +02:00
commit 46665f83d1
6 changed files with 53 additions and 51 deletions

View file

@ -10,7 +10,6 @@ in {
../modules
inputs.home-manager.nixosModules.home-manager
inputs.agenix.nixosModules.default
inputs.stylix.nixosModules.stylix
];
};
hermit = lib.nixosSystem rec {
@ -22,7 +21,6 @@ in {
inputs.home-manager.nixosModules.home-manager
inputs.agenix.nixosModules.default
inputs.lix-module.nixosModules.default
inputs.stylix.nixosModules.stylix
inputs.nixos-hardware.nixosModules.dell-xps-15-7590-nvidia
];
};

View file

@ -89,7 +89,6 @@
};
helix.enable = true;
kakoune.enable = true;
# nixvim.enable = false; # broken at the moment
neovim.enable = true;
};
services = {

View file

@ -1,3 +1,4 @@
# credits to raf, his repo is in the README.md!
{
pkgs,
config,
@ -28,7 +29,7 @@ in {
imports = concatLists [
# neovim-flake home-manager module
[nvf.nixosModules.default]
# construct this entore directory as a module
# construct this entire directory as a module
# which means all default.nix files will be imported automtically
(mkNeovimModule {path = ./.;})
];

View file

@ -20,7 +20,7 @@ opt.cursorline = true
opt.whichwrap:append('<,>,h,l,[,]')
opt.list = true
-- haracters to fill the statuslines, vertical separators and special
-- characters to fill the statuslines, vertical separators and special
-- lines in the window.opt.whichwrap:append('<,>,h,l,[,]')
opt.fillchars:append({
-- replace window border with slightly thicker characters

View file

@ -47,6 +47,8 @@ in {
preventJunkFiles = true;
useSystemClipboard = true;
tabWidth = 4;
autoIndent = true;
spellcheck = {
enable = true;
# TODO add de

View file

@ -1,5 +1,6 @@
{
config,
inputs,
pkgs,
lib,
...
@ -9,6 +10,7 @@
inherit (config.modules.theming.stylix.cursor) size;
inherit (config.modules.theming.stylix.fontsizes) terminal popups applications;
in {
imports = [inputs.stylix.nixosModules.stylix];
options.modules.theming.stylix = {
enable = lib.mkEnableOption "stylix";
scheme = lib.mkOption {
@ -93,7 +95,7 @@ in {
applications = 0.9;
popups = 0.9;
desktop = 0.9;
terminal = 0.85;
terminal = 1.0;
};
targets = {
console.enable = true;