This commit is contained in:
joygnu 2024-07-08 20:53:46 +02:00
parent 5cb5fda6bd
commit db5b817a12
7 changed files with 13 additions and 8 deletions

View file

@ -26,6 +26,7 @@
inputs.stylix.nixosModules.stylix inputs.stylix.nixosModules.stylix
]; ];
}; };
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem { nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = [ modules = [

View file

@ -9,9 +9,6 @@ home.username = "joy";
home.sessionVariables = { home.sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";
}; };
qt.enable = true;
qt.platformTheme.name = "gtk";
qt.style.name = "adwaita-dark";
xdg.mimeApps.defaultApplications = { xdg.mimeApps.defaultApplications = {
"text/plain" = ["neovide.desktop"]; "text/plain" = ["neovide.desktop"];

View file

@ -32,7 +32,7 @@
cmdheight = 0; cmdheight = 0;
wrap = true; wrap = true;
termguicolors = true; termguicolors = true;
showmode = false; # showmode = false;
}; };
}; };
} }

View file

@ -1,6 +1,6 @@
{ {
imports = [ imports = [
./fonts # ./fonts
./sound ./sound
./vm ./vm
./packages ./packages

View file

@ -3,6 +3,6 @@
{ {
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
font-awesome font-awesome
(nerdfonts.override { fonts = [ "FiraCode" "JetBrainsMono" "Iosevka" ]; }) (nerdfonts.override { fonts = [ "FiraCode" ]; })
]; ];
} }

View file

@ -56,5 +56,6 @@
yt-dlp yt-dlp
distrobox distrobox
vim vim
font-awesome
]; ];
} }

View file

@ -22,11 +22,17 @@
base0F = "d65d0e"; base0F = "d65d0e";
}; };
image = ./wallpaper.png; image = ./wallpaper.png;
fonts.sizes.terminal = 14;
targets.chromium.enable = false; targets.chromium.enable = false;
cursor.name = "Bibata-Modern-Ice"; cursor.name = "Bibata-Modern-Ice";
cursor.package = pkgs.bibata-cursors; cursor.package = pkgs.bibata-cursors;
cursor.size = 24; cursor.size = 24;
fonts.sizes.desktop = 12; fonts = {
sizes = {
applications = 12;
terminal = 14;
desktop = 12;
popups = 12;
};
};
}; };
} }