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}; pkgs = nixpkgs.legacyPackages.${system};
in in
{ {
nixosConfigurations.default = nixpkgs.lib.nixosSystem { nixosConfigurations.alienware = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default

View File

@ -25,7 +25,7 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ]; 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. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary # Configure network proxy if necessary
@ -117,6 +117,7 @@
wget wget
vscode vscode
gparted gparted
nh
]; ];
# Some programs need SUID wrappers, can be configured further or are # 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/git.nix
# ../../modules/home-manager/zsh.nix # ../../modules/home-manager/zsh.nix
../../modules/home-manager/themes/ghibli-gtk.nix ../../modules/home-manager/themes/basic-gtk.nix
]; ];
# Allow Unfree # Allow Unfree
@ -29,6 +29,7 @@
# environment. # environment.
home.packages = with pkgs; [ home.packages = with pkgs; [
# Essentials # Essentials
corefonts
firefox firefox
ferdium ferdium
git git

View File

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