diff --git a/configuration.nix b/configuration.nix index 76775e4..a080c80 100644 --- a/configuration.nix +++ b/configuration.nix @@ -97,6 +97,16 @@ fcitx5.waylandFrontend = true; }; + # Fonts + fonts.packages = with pkgs; [ + ibm-plex + liberation_ttf + nerd-fonts.blex-mono + noto-fonts + noto-fonts-cjk-sans + noto-fonts-emoji + ]; + # Enable CUPS to print documents. services.printing.enable = true; @@ -184,7 +194,8 @@ # $ nix search wget environment.systemPackages = with pkgs; [ bitwarden-cli - bitwarden-desktop + bitwarden-desktop + cifs-utils emacs-pgtk firefoxpwa gcc diff --git a/flake.nix b/flake.nix index 0dbe74a..ab83bc5 100644 --- a/flake.nix +++ b/flake.nix @@ -19,23 +19,38 @@ # Please replace my-nixos with your hostname nixosConfigurations = { anzu = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + # Import the previous configuration.nix we used, + # so the old configuration file still takes effect + ./configuration.nix + ./hosts/anzu/hardware-configuration.nix + # Add NUR overlay + nur.modules.nixos.default + # Add home-manager + home-manager.nixosModules.home-manager + { + home-manager.backupFileExtension = "backup"; + home-manager.useGlobalPkgs = true; + home-manager.users.chase = ./home.nix; + } + ]; + }; + ichigo = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = { inherit inputs; }; - modules = [ - # Import the previous configuration.nix we used, - # so the old configuration file still takes effect - ./configuration.nix - ./hosts/anzu/hardware-configuration.nix - # Add NUR overlay - nur.modules.nixos.default - # Add home-manager - home-manager.nixosModules.home-manager - { - home-manager.backupFileExtension = "backup"; - home-manager.useGlobalPkgs = true; - home-manager.users.chase = ./home.nix; - } - ]; + specialArgs = { inherit inputs; }; + modules = [ + ./configuration.nix + ./hosts/ichigo/hardware-configuration.nix + nur.modules.nixos.default + home-manager.nixosModules.home-manager + { + home-manager.backupFileExtension = "backup"; + home-manager.useGlobalPkgs = true; + home-manager.users.chase = ./home.nix; + } + ]; }; }; }; diff --git a/home.nix b/home.nix index 6139d94..81f9b64 100644 --- a/home.nix +++ b/home.nix @@ -49,7 +49,7 @@ modules = [ "title" "separator" - "os" + "os" "host" "uptime" "kernel"