Change icons

This commit is contained in:
Isshi0417 2024-07-02 21:09:19 +09:00
parent 56b153a61d
commit 944319ecae
4 changed files with 7 additions and 5 deletions

View File

@ -18,7 +18,7 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
nixosConfigurations.alienware = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
inputs.home-manager.nixosModules.default

View File

@ -25,7 +25,7 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
networking.hostName = "nixos"; # Define your hostname.
networking.hostName = "alienware"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -117,6 +117,7 @@
wget
vscode
gparted
nh
];
# Some programs need SUID wrappers, can be configured further or are

View File

@ -5,7 +5,7 @@
[
../../modules/home-manager/git.nix
# ../../modules/home-manager/zsh.nix
../../modules/home-manager/themes/ghibli-gtk.nix
../../modules/home-manager/themes/basic-gtk.nix
];
# Allow Unfree
@ -29,6 +29,7 @@
# environment.
home.packages = with pkgs; [
# Essentials
corefonts
firefox
ferdium
git

View File

@ -6,6 +6,6 @@
gtk.theme.package = lib.mkForce pkgs.adw-gtk3;
gtk.theme.name = "adw-gtk3";
gtk.iconTheme.package = pkgs.papirus-icon-theme;
gtk.iconTheme.name = "Papirus-Dark";
gtk.iconTheme.package = pkgs.tela-circle-icon-theme;
gtk.iconTheme.name = "Tela-circle-dark";
}